Module:Check for unknown parameters: Difference between revisions

From the Croc Wiki, the Croc encyclopedia
Jump to navigationJump to search
Content added Content deleted
No edit summary
No edit summary
Line 9: Line 9:
local knownargs = {}
local knownargs = {}
local unknown = 'Found _VALUE_'
local unknown = 'Found _VALUE_, '
local res = {}
local res = {}
Line 33: Line 33:
end
end


return table.concat(res, '\n')
return table.concat(res)
end
end