git: eec4f5c034f6 - main - pkgbase: Fix a typo in a source code comment
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Mon, 28 Mar 2022 17:33:31 UTC
The branch main has been updated by gbe (doc committer): URL: https://cgit.FreeBSD.org/src/commit/?id=eec4f5c034f649e873396125ec8d39826eb65135 commit eec4f5c034f649e873396125ec8d39826eb65135 Author: Gordon Bergling <gbe@FreeBSD.org> AuthorDate: 2022-03-27 16:56:58 +0000 Commit: Gordon Bergling <gbe@FreeBSD.org> CommitDate: 2022-03-28 17:33:25 +0000 pkgbase: Fix a typo in a source code comment - s/begining/beginning/ MFC after: 3 days --- tools/pkgbase/metalog_reader.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/pkgbase/metalog_reader.lua b/tools/pkgbase/metalog_reader.lua index a429c981a71d..c3b5b6039873 100644 --- a/tools/pkgbase/metalog_reader.lua +++ b/tools/pkgbase/metalog_reader.lua @@ -475,7 +475,7 @@ function Analysis_session(metalog, verbose, w_notagdirs) for line in fp:lines() do -----local isinpkg = false lineno = lineno + 1 - -- skip lines begining with # + -- skip lines beginning with # if line:match('^%s*#') then goto continue end -- skip blank lines if line:match('^%s*$') then goto continue end