Changes to comply with the documentation

This commit is contained in:
Xertis 2025-01-26 14:21:44 +03:00 committed by GitHub
parent 266ddd400f
commit 5187ee76e9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -153,13 +153,13 @@ function table.filter(t, func)
return t return t
end end
function table.set_default(t, indx, default) function table.set_default(t, key, default)
if t[indx] == nil then if t[key] == nil then
t[indx] = default t[key] = default
return return
end end
return t[indx] return t[key]
end end
function table.flat(t) function table.flat(t)