Correct typo

This commit is contained in:
Cody Young 2023-03-21 14:47:17 -05:00
parent 523696db16
commit 9606e545e4
1 changed files with 1 additions and 1 deletions

View File

@ -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