Correct typo
This commit is contained in:
parent
523696db16
commit
9606e545e4
|
@ -38,7 +38,7 @@ local ItemCollection = {}
|
||||||
ItemCollection.__index = ItemCollection
|
ItemCollection.__index = ItemCollection
|
||||||
|
|
||||||
local function ItemCollection_new(items)
|
local function ItemCollection_new(items)
|
||||||
checkArg(1, item, "table");
|
checkArg(1, items, "table");
|
||||||
local output = {}
|
local output = {}
|
||||||
output.searchTable = {}
|
output.searchTable = {}
|
||||||
for i,item in pairs(items) do
|
for i,item in pairs(items) do
|
||||||
|
|
Loading…
Reference in New Issue