one better name for a variable

This commit is contained in:
Wouter Scherphof 2013-03-26 10:31:41 +01:00
parent f2e89f40f9
commit 5e9cd17ed0

View File

@ -59,9 +59,9 @@ function ElementNode:addattribute(k, v)
end end
end end
local function insert(list, name, node) local function insert(table, name, node)
list[name] = list[name] or Set:new() table[name] = table[name] or Set:new()
list[name]:add(node) table[name]:add(node)
end end
function ElementNode:close(closestart, closeend) function ElementNode:close(closestart, closeend)