Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
bpo-31865: Fix a couple of typos in the html.unescape() docs. (GH-9663)
(cherry picked from commit 30534cc)

Co-authored-by: Ezio Melotti <ezio.melotti@gmail.com>
  • Loading branch information
miss-islington and ezio-melotti committed Oct 2, 2018
1 parent 655608a commit 27d7f93
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Doc/library/html.rst
Expand Up @@ -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>`.
Expand Down

0 comments on commit 27d7f93

Please sign in to comment.