Skip to content

Commit

Permalink
Fix lm:about
Browse files Browse the repository at this point in the history
  • Loading branch information
shmuz committed Oct 20, 2023
1 parent 70c18fb commit 438e969
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion luamacro/src/luamacro.lua
Original file line number Diff line number Diff line change
Expand Up @@ -345,7 +345,7 @@ local function About()
text = text.."\nMoonScript "..lib.version
if lpeg then
local v = lpeg.version
text = text.."\nLPeg "..(type(v)=="function" and v() or v) -- depends on LPeg version
text = text.."\n"..(type(v)=="function" and "LPeg "..v() or v) -- depends on LPeg version
end
end

Expand Down

0 comments on commit 438e969

Please sign in to comment.