diff options
author | R David Murray <rdmurray@bitdance.com> | 2015-08-24 16:55:03 (GMT) |
---|---|---|
committer | R David Murray <rdmurray@bitdance.com> | 2015-08-24 16:55:03 (GMT) |
commit | 87cbfb20fb5250637701551f51330ab3dad20614 (patch) | |
tree | 06ab918fa1c24af15ebe035bc0d82483baacbf11 /Doc | |
parent | a2b005539687789774f52507bda4d0cecaddb583 (diff) | |
download | cpython-87cbfb20fb5250637701551f51330ab3dad20614.zip cpython-87cbfb20fb5250637701551f51330ab3dad20614.tar.gz cpython-87cbfb20fb5250637701551f51330ab3dad20614.tar.bz2 |
#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 44b7d6e..fef9c38 100644 --- a/Doc/library/html.parser.rst +++ b/Doc/library/html.parser.rst @@ -213,7 +213,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) |