diff options
author | Fred Drake <fdrake@acm.org> | 2003-12-30 16:18:23 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2003-12-30 16:18:23 (GMT) |
commit | 4922cae1e14e025213aa708db383c4e46630b3ab (patch) | |
tree | 78683232a9c70778f17b8eb4cc1d8fbfecca8e64 /Doc | |
parent | 42713109d9badc9291ccd7a2492c9cc9c108e6f8 (diff) | |
download | cpython-4922cae1e14e025213aa708db383c4e46630b3ab.zip cpython-4922cae1e14e025213aa708db383c4e46630b3ab.tar.gz cpython-4922cae1e14e025213aa708db383c4e46630b3ab.tar.bz2 |
- remove crufty markup that's no longer needed to make the
presentation work right (and didn't work anyway)
- fix minor typo
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/lib/libhtmlparser.tex | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/lib/libhtmlparser.tex b/Doc/lib/libhtmlparser.tex index 3912653..5ba8e86 100644 --- a/Doc/lib/libhtmlparser.tex +++ b/Doc/lib/libhtmlparser.tex @@ -109,8 +109,8 @@ 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 -themselves. For example, the comment \samp{<!{-}{-}text{-}{-}>} will +\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 implementation does nothing. @@ -132,7 +132,7 @@ is intended to be overridden by a derived class; the base class implementation does nothing. \note{The \class{HTMLParser} class uses the SGML syntactic rules for -processing instruction. An XHTML processing instruction using the +processing instructions. An XHTML processing instruction using the trailing \character{?} will cause the \character{?} to be included in \var{data}.} \end{methoddesc} |