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
end
function table.set_default(t, indx, default)
if t[indx] == nil then
t[indx] = default
function table.set_default(t, key, default)
if t[key] == nil then
t[key] = default
return
end
return t[indx]
return t[key]
end
function table.flat(t)