diff options
author | Raymond Hettinger <python@rcn.com> | 2003-08-25 03:31:28 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2003-08-25 03:31:28 (GMT) |
commit | 9ac25ec0254eb28b27c80659c10b6ec7c6fa43b3 (patch) | |
tree | 97027fc1c41ebc786ad8358a6267d6ff535f7bd9 /Doc | |
parent | c2a5cb23271e7738c6705d15288bdd46619c3385 (diff) | |
download | cpython-9ac25ec0254eb28b27c80659c10b6ec7c6fa43b3.zip cpython-9ac25ec0254eb28b27c80659c10b6ec7c6fa43b3.tar.gz cpython-9ac25ec0254eb28b27c80659c10b6ec7c6fa43b3.tar.bz2 |
SF bug #793702: Section 13.1 HTMLParser documentation error
The -- is special to TeX and was printing as just -.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/lib/libhtmlparser.tex | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/lib/libhtmlparser.tex b/Doc/lib/libhtmlparser.tex index f7bbf63..b6b8c98 100644 --- a/Doc/lib/libhtmlparser.tex +++ b/Doc/lib/libhtmlparser.tex @@ -109,7 +109,7 @@ base class implementation does nothing. \begin{methoddesc}{handle_comment}{data} This method is called when a comment is encountered. The \var{comment} argument is a string containing the text between the -\samp{<!--} and \samp{-->} delimiters, but not the delimiters +\samp{<!-\-} and \samp{-\->} delimiters, but not the delimiters themselves. For example, the comment \samp{<!--text-->} will cause this method to be called with the argument \code{'text'}. It is intended to be overridden by a derived class; the base class |