whitespace

This commit is contained in:
Max Cahill 2023-06-06 15:20:11 +10:00
parent 11a92387df
commit d3a3ba9d28

View File

@ -124,7 +124,7 @@ end
--or nil if nothing was found --or nil if nothing was found
function tablex.index_of(t, a) function tablex.index_of(t, a)
if a == nil then return nil end if a == nil then return nil end
for i,b in ipairs(t) do for i, b in ipairs(t) do
if a == b then if a == b then
return i return i
end end