]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
gh-141650: Fix typo in `xml.sax.saxutils.unescape` documentation (#141652)
authorTamzin Hadasa Kelly <tk.infinity@gmail.com>
Mon, 17 Nov 2025 11:35:01 +0000 (18:35 +0700)
committerGitHub <noreply@github.com>
Mon, 17 Nov 2025 11:35:01 +0000 (13:35 +0200)
Doc/library/xml.sax.utils.rst

index 5ee11d58c3dd26376066090d4639403f95f58246..7731f03d875efcec6a72110d8a70a700894a545e 100644 (file)
@@ -37,7 +37,7 @@ or as base classes.
 
    You can unescape other strings of data by passing a dictionary as the optional
    *entities* parameter.  The keys and values must all be strings; each key will be
-   replaced with its corresponding value.  ``'&amp'``, ``'&lt;'``, and ``'&gt;'``
+   replaced with its corresponding value.  ``'&amp;'``, ``'&lt;'``, and ``'&gt;'``
    are always unescaped, even if *entities* is provided.