//multi: luacheck fix

This commit is contained in:
Starbeamrainbowlabs 2021-07-30 20:03:16 +01:00
parent 1c8d572bb8
commit 23e08c5693
Signed by: sbrl
GPG key ID: 1BE5172E637709C2

View file

@ -12,7 +12,7 @@ local function explode(delim, str)
return function()
if is_done then return end
local result = nil
local result
local loc = string.find(str, delim, ll, true) -- find the next d in the string
if loc ~= nil then -- if "not not" found then..
result = string.sub(str, ll, loc - 1) -- Save it in our array.