diff options
author | Georg Brandl <georg@python.org> | 2009-03-15 21:47:42 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2009-03-15 21:47:42 (GMT) |
commit | 8db96b5969538f1bba98ba5cdb7af1c66ff7875b (patch) | |
tree | 0772d040af2b9c84d93e669b38e4bee11adf36d6 /Doc/library | |
parent | 44e5cd3e517e266eb89281ace5033571179e8931 (diff) | |
download | cpython-8db96b5969538f1bba98ba5cdb7af1c66ff7875b.zip cpython-8db96b5969538f1bba98ba5cdb7af1c66ff7875b.tar.gz cpython-8db96b5969538f1bba98ba5cdb7af1c66ff7875b.tar.bz2 |
#5478: fix copy-paste oversight in function signature.
Diffstat (limited to 'Doc/library')
-rw-r--r-- | Doc/library/xml.dom.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/xml.dom.rst b/Doc/library/xml.dom.rst index 16cfad5..8a74e7d 100644 --- a/Doc/library/xml.dom.rst +++ b/Doc/library/xml.dom.rst @@ -611,7 +611,7 @@ of that class. Same as equivalent method in the :class:`Document` class. -.. method:: Element.getElementsByTagNameNS(tagName) +.. method:: Element.getElementsByTagNameNS(namespaceURI, localName) Same as equivalent method in the :class:`Document` class. |