Skip to content

Commit 27ea859

Browse files
committed
Comment fixes.
1 parent 55f002d commit 27ea859

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

preprocess.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1806,7 +1806,7 @@ local numberFormatters = {
18061806
-- whitespaceToken = newToken( "whitespace", contents )
18071807
-- ppEntryToken = newToken( "pp_entry", isDouble )
18081808
-- ppKeywordToken = newToken( "pp_keyword", ppKeyword ) -- ppKeyword can be "@".
1809-
-- ppKeywordToken = newToken( "pp_symbol", identifier )
1809+
-- ppSymbolToken = newToken( "pp_symbol", identifier )
18101810
--
18111811
-- commentToken = { type="comment", representation=string, value=string, long=isLongForm }
18121812
-- identifierToken = { type="identifier", representation=string, value=string }
@@ -2128,7 +2128,7 @@ function metaEnv.__EVALSYMBOL(v)
21282128
if
21292129
type(v) == "function"
21302130
-- We use debug.getmetatable instead of _G.getmetatable because we
2131-
-- don't want to potentially invoke used code right here - we just
2131+
-- don't want to potentially invoke user code right here - we just
21322132
-- want to know if the value is callable.
21332133
or (type(v) == "table" and debug.getmetatable(v) and debug.getmetatable(v).__call)
21342134
then

0 commit comments

Comments
 (0)