diff options
author | R David Murray <rdmurray@bitdance.com> | 2015-08-24 16:56:24 (GMT) |
---|---|---|
committer | R David Murray <rdmurray@bitdance.com> | 2015-08-24 16:56:24 (GMT) |
commit | 4c4cfad2df20d00a8d954ba0d6109c1781ffe009 (patch) | |
tree | 2f225b1af1fc386d243938f1149c057fd9614b3a /Doc | |
parent | d949e5b05753bfa95804e73c8e3bad290d80578e (diff) | |
parent | 7d9376f2d8b9b0f57097745f94fcfddd2bd1aa16 (diff) | |
download | cpython-4c4cfad2df20d00a8d954ba0d6109c1781ffe009.zip cpython-4c4cfad2df20d00a8d954ba0d6109c1781ffe009.tar.gz cpython-4c4cfad2df20d00a8d954ba0d6109c1781ffe009.tar.bz2 |
Merge: #24926: Fix typo in example.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/html.parser.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/html.parser.rst b/Doc/library/html.parser.rst index b84c60b..824995e 100644 --- a/Doc/library/html.parser.rst +++ b/Doc/library/html.parser.rst @@ -185,7 +185,7 @@ implementations do nothing (except for :meth:`~HTMLParser.handle_startendtag`): The content of Internet Explorer conditional comments (condcoms) will also be sent to this method, so, for ``<!--[if IE 9]>IE9-specific content<![endif]-->``, - this method will receive ``'[if IE 9]>IE-specific content<![endif]'``. + this method will receive ``'[if IE 9]>IE9-specific content<![endif]'``. .. method:: HTMLParser.handle_decl(decl) |