bpo-31865: Fix a couple of typos in the html.unescape() docs. (GH-9663)

(cherry picked from commit 30534cc717)

Co-authored-by: Ezio Melotti <ezio.melotti@gmail.com>
This commit is contained in:
Miss Islington (bot) 2018-10-01 17:43:54 -07:00 committed by Ezio Melotti
parent 655608a111
commit 27d7f93f63
1 changed files with 1 additions and 1 deletions

View File

@ -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>`.