https://github.com/python/cpython/commit/8d4e94ec6ca449b08c3547c5556558505f56fd4d
commit: 8d4e94ec6ca449b08c3547c5556558505f56fd4d
branch: 3.13
author: Miss Islington (bot) <[email protected]>
committer: hugovk <[email protected]>
date: 2025-11-17T13:02:01Z
summary:

[3.13] gh-141650: Fix typo in `xml.sax.saxutils.unescape` documentation 
(GH-141652) (#141653)

Co-authored-by: Tamzin Hadasa Kelly <[email protected]>

files:
M Doc/library/xml.sax.utils.rst

diff --git a/Doc/library/xml.sax.utils.rst b/Doc/library/xml.sax.utils.rst
index 5ee11d58c3dd26..7731f03d875efc 100644
--- a/Doc/library/xml.sax.utils.rst
+++ b/Doc/library/xml.sax.utils.rst
@@ -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.
 
 

_______________________________________________
Python-checkins mailing list -- [email protected]
To unsubscribe send an email to [email protected]
https://mail.python.org/mailman3//lists/python-checkins.python.org
Member address: [email protected]

Reply via email to