summaryrefslogtreecommitdiffstats
path: root/Doc/library
diff options
context:
space:
mode:
authorEzio Melotti <ezio.melotti@gmail.com>2018-10-02 00:34:46 (GMT)
committerGitHub <noreply@github.com>2018-10-02 00:34:46 (GMT)
commit30534cc7172f36092e0002bb7df482edc0d539ce (patch)
tree8bdbd156845259a706e21a699db97b356b2df44d /Doc/library
parentd4c76d960b8b286b75c933780416ace9cda682fd (diff)
downloadcpython-30534cc7172f36092e0002bb7df482edc0d539ce.zip
cpython-30534cc7172f36092e0002bb7df482edc0d539ce.tar.gz
cpython-30534cc7172f36092e0002bb7df482edc0d539ce.tar.bz2
bpo-31865: Fix a couple of typos in the html.unescape() docs. (GH-9662)
Diffstat (limited to 'Doc/library')
-rw-r--r--Doc/library/html.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/html.rst b/Doc/library/html.rst
index d0706bc..c2b01e1 100644
--- a/Doc/library/html.rst
+++ b/Doc/library/html.rst
@@ -24,7 +24,7 @@ This module defines utilities to manipulate HTML.
.. function:: unescape(s)
Convert all named and numeric character references (e.g. ``&gt;``,
- ``&#62;``, ``&x3e;``) in the string *s* to the corresponding unicode
+ ``&#62;``, ``&#x3e;``) in the string *s* to the corresponding Unicode
characters. This function uses the rules defined by the HTML 5 standard
for both valid and invalid character references, and the :data:`list of
HTML 5 named character references <html.entities.html5>`.