diff options
author | Jean-Christophe Helary <jean.christophe.helary@traduction-libre.org> | 2022-06-30 17:06:42 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-30 17:06:42 (GMT) |
commit | 639e35108bc8b2b880225862d3571277ad57648b (patch) | |
tree | ec0ed6ea8a450ffee3d3911a5395de84899cbe39 /Doc | |
parent | b6ec6d4041a5d937f0b63764a329582af4948a3c (diff) | |
download | cpython-639e35108bc8b2b880225862d3571277ad57648b.zip cpython-639e35108bc8b2b880225862d3571277ad57648b.tar.gz cpython-639e35108bc8b2b880225862d3571277ad57648b.tar.bz2 |
xml.dom.minidom docs: fix typo (#93437)
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/xml.dom.minidom.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/xml.dom.minidom.rst b/Doc/library/xml.dom.minidom.rst index 076cf34..82e5d6a 100644 --- a/Doc/library/xml.dom.minidom.rst +++ b/Doc/library/xml.dom.minidom.rst @@ -95,7 +95,7 @@ document: the one that holds all others. Here is an example program:: When you are finished with a DOM tree, you may optionally call the :meth:`unlink` method to encourage early cleanup of the now-unneeded objects. :meth:`unlink` is an :mod:`xml.dom.minidom`\ -specific -extension to the DOM API that renders the node and its descendants are +extension to the DOM API that renders the node and its descendants essentially useless. Otherwise, Python's garbage collector will eventually take care of the objects in the tree. |