]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
[3.13] gh-141650: Fix typo in `xml.sax.saxutils.unescape` documentation (GH-141652...
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Mon, 17 Nov 2025 13:02:01 +0000 (14:02 +0100)
committerGitHub <noreply@github.com>
Mon, 17 Nov 2025 13:02:01 +0000 (13:02 +0000)
Co-authored-by: Tamzin Hadasa Kelly <tk.infinity@gmail.com>
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.