Forgot to commit this last time
This commit is contained in:
parent
62e12a5204
commit
718215ce91
|
@ -53,7 +53,7 @@ end
|
|||
---@param at integer
|
||||
---@param value T
|
||||
function M.list_insert(list, at, value)
|
||||
table.insert(list,at, value)
|
||||
table.insert(list, at, value)
|
||||
end
|
||||
|
||||
---Shallow copies some table
|
||||
|
@ -64,7 +64,8 @@ function M.copy(object)
|
|||
local result = {}
|
||||
|
||||
for k, v in pairs(object) do
|
||||
result[k] = v end
|
||||
result[k] = v
|
||||
end
|
||||
|
||||
return result
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue