mirror of
https://github.com/msva/lua-htmlparser.git
synced 2024-11-04 23:34:20 +00:00
one better name for a variable
This commit is contained in:
parent
f2e89f40f9
commit
5e9cd17ed0
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user