Line 38:
Line 38:
local function prefixEach(n)
local function prefixEach(n)
return function(i)
return function(i)
−
return (i - 1) % n == 0 and string.format('!%d-%d', i, i + n)
+
return (i - 1) % n == 0 and string.format('!%d-%d', i, i - 1 + n)
end
end
end
end