You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Functions not prefixed with local aren't closed with end, even though indentation is added
functiontest()
-- indentation is added, but no end keywordlocalmodule= {}
functionmodule.hi()
-- same thinglocaldictionary= {
somefunc=function(),
-- ...
}
The text was updated successfully, but these errors were encountered:
Functions not prefixed with
local
aren't closed withend
, even though indentation is addedThe text was updated successfully, but these errors were encountered: