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
local function insert(list, name, node)
list[name] = list[name] or Set:new()
list[name]:add(node)
local function insert(table, name, node)
table[name] = table[name] or Set:new()
table[name]:add(node)
end
function ElementNode:close(closestart, closeend)