diff options
author | R David Murray <rdmurray@bitdance.com> | 2015-08-24 16:50:50 (GMT) |
---|---|---|
committer | R David Murray <rdmurray@bitdance.com> | 2015-08-24 16:50:50 (GMT) |
commit | f79aa5870f9d7d9858e41e20be2eb96f26961f3c (patch) | |
tree | 798546b282ff40693a4d4122b91f36b897b461b3 /Doc | |
parent | d951625f8113c853981eb7af00cdbfe7b9dcaf3a (diff) | |
download | cpython-f79aa5870f9d7d9858e41e20be2eb96f26961f3c.zip cpython-f79aa5870f9d7d9858e41e20be2eb96f26961f3c.tar.gz cpython-f79aa5870f9d7d9858e41e20be2eb96f26961f3c.tar.bz2 |
#24926: Fix typo in example.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/htmlparser.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/htmlparser.rst b/Doc/library/htmlparser.rst index 3aba74e..81d5c53 100644 --- a/Doc/library/htmlparser.rst +++ b/Doc/library/htmlparser.rst @@ -201,7 +201,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) |