mirror of
https://github.com/TangentFoxy/lua-htmlparser.git
synced 2025-07-28 02:52:19 +00:00
one better name for a variable
This commit is contained in:
@@ -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)
|
||||||
|
Reference in New Issue
Block a user