Content deleted Content added
mw-collapsed |
Simplified a while loop to eliminate an unnecessary "artificial" loop-break mechanism |
||
Line 105:
end
local i = 2
while
▲ text = string.format("%s%s",text,row(args, i))
▲ i = i + 1 --Check if from(i+1) exist
end
return text
|