diff options
author | R David Murray <rdmurray@bitdance.com> | 2015-08-24 16:55:47 (GMT) |
---|---|---|
committer | R David Murray <rdmurray@bitdance.com> | 2015-08-24 16:55:47 (GMT) |
commit | 7d9376f2d8b9b0f57097745f94fcfddd2bd1aa16 (patch) | |
tree | f36b2dea4ba7f74841158c8bb8a34b1e4066ef1d /Doc | |
parent | 478eadc5f321272d6dc5eacb1e2710bbe59103fa (diff) | |
parent | 87cbfb20fb5250637701551f51330ab3dad20614 (diff) | |
download | cpython-7d9376f2d8b9b0f57097745f94fcfddd2bd1aa16.zip cpython-7d9376f2d8b9b0f57097745f94fcfddd2bd1aa16.tar.gz cpython-7d9376f2d8b9b0f57097745f94fcfddd2bd1aa16.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) |