Content deleted Content added
Jackmcbarn (talk | contribs) the variable _ is intended as a dummy variable and should only be written to, never read. since that isn't how it's being used here, rename it |
Jackmcbarn (talk | contribs) simplify more |
||
Line 25:
local function left(builder, year)
builder:tag( 'td'
:attr('align', 'right')
:wikitext( year .. ' –' )
end
Line 92 ⟶ 94:
if tonumber(args.last) then
lastyear = tonumber(args.last)
else
if isYearReleased(args, i) then
lastyear = i
|