table_reduce: typo

This commit is contained in:
Starbeamrainbowlabs 2023-01-21 02:34:47 +00:00
parent 2ecc8cb2d7
commit 87812679d9
Signed by: sbrl
GPG key ID: 1BE5172E637709C2

View file

@ -10,4 +10,6 @@ local function table_reduce(tbl, func, initial_value)
acc = func(acc, value, key, tbl) acc = func(acc, value, key, tbl)
end end
return acc return acc
end end
return table_reduce