Merge pull request #3 from flamendless/patch-1

Fixed typo in table.clear
This commit is contained in:
Max Cahill 2020-03-28 16:06:37 +11:00 committed by GitHub
commit ef25d12b1b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -144,7 +144,7 @@ if _table.clear == nil then
--useful when multiple references are floating around
--so you cannot just pop a new table out of nowhere
function _table.clear(t)
assert(type(to) == "table", "table.clear - argument 't' must be a table")
assert(type(t) == "table", "table.clear - argument 't' must be a table")
local k = next(t)
while k ~= nil do
t[k] = nil