summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/tex/luatex/luaxml/luaxml-domobject.lua
diff options
context:
space:
mode:
Diffstat (limited to 'Master/texmf-dist/tex/luatex/luaxml/luaxml-domobject.lua')
-rw-r--r--Master/texmf-dist/tex/luatex/luaxml/luaxml-domobject.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/Master/texmf-dist/tex/luatex/luaxml/luaxml-domobject.lua b/Master/texmf-dist/tex/luatex/luaxml/luaxml-domobject.lua
index 767ba32c669..a410885e04c 100644
--- a/Master/texmf-dist/tex/luatex/luaxml/luaxml-domobject.lua
+++ b/Master/texmf-dist/tex/luatex/luaxml/luaxml-domobject.lua
@@ -475,7 +475,7 @@ local parse = function(
--- Get node list which current node is part of
-- @return table with elements
- function DOM_Object:get_siblibgs(
+ function DOM_Object:get_siblings(
el -- [optional] element for which the sibling element list should be retrieved
)
local el = el or self
@@ -491,7 +491,7 @@ local parse = function(
function DOM_Object:get_sibling_node( change)
local el = self
local pos = el:find_element_pos()
- local siblings = el:get_siblibgs()
+ local siblings = el:get_siblings()
if pos and siblings then
return siblings[pos + change]
end