diff options
author | Thomas Wouters <thomas@python.org> | 2000-07-16 19:01:10 (GMT) |
---|---|---|
committer | Thomas Wouters <thomas@python.org> | 2000-07-16 19:01:10 (GMT) |
commit | f8316638afb2eff261c3854ee6e02b9bc47d0955 (patch) | |
tree | 8d0271c66820c6c5ea947724b04a89362c9b222d /Doc/lib/libformatter.tex | |
parent | 0e19e76aba9f470c348e25bb2d550f9a096642bd (diff) | |
download | cpython-f8316638afb2eff261c3854ee6e02b9bc47d0955.zip cpython-f8316638afb2eff261c3854ee6e02b9bc47d0955.tar.gz cpython-f8316638afb2eff261c3854ee6e02b9bc47d0955.tar.bz2 |
Rob W. W. Hooft's spelling fixes for the Library Reference. I hope
SourceForge doesn't choke on this batch :-)
I'm not entirely sure this is 100% correct. The patch changes an
\index{persistency} to \index{presistence}, and I don't know what \index{}
does. But it seems to do so persi--er, consistently, so I hope it isn't a
problem.
Diffstat (limited to 'Doc/lib/libformatter.tex')
-rw-r--r-- | Doc/lib/libformatter.tex | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Doc/lib/libformatter.tex b/Doc/lib/libformatter.tex index fcda71d..7271982 100644 --- a/Doc/lib/libformatter.tex +++ b/Doc/lib/libformatter.tex @@ -6,7 +6,7 @@ -This module supports two interface definitions, each with mulitple +This module supports two interface definitions, each with multiple implementations. The \emph{formatter} interface is used by the \class{HTMLParser} class of the \refmodule{htmllib} module, and the \emph{writer} interface is required by the formatter interface. @@ -75,8 +75,8 @@ not broken. The arguments and keywords are passed on to the writer's \end{methoddesc} \begin{methoddesc}[formatter]{add_flowing_data}{data} -Provide data which should be formatted with collapsed whitespaces. -Whitespace from preceeding and successive calls to +Provide data which should be formatted with collapsed whitespace. +Whitespace from preceding and successive calls to \method{add_flowing_data()} is considered as well when the whitespace collapse is performed. The data which is passed to this method is expected to be word-wrapped by the output device. Note that any @@ -106,7 +106,7 @@ value, are used to compute label values. Each character in the format string is copied to the label value, with some characters recognized to indicate a transform on the counter value. Specifically, the character \character{1} represents the counter value formatter as an -arabic number, the characters \character{A} and \character{a} +Arabic number, the characters \character{A} and \character{a} represent alphabetic representations of the counter value in upper and lower case, respectively, and \character{I} and \character{i} represent the counter value in Roman numerals, in upper and lower @@ -264,7 +264,7 @@ Break the current line. \begin{methoddesc}[writer]{send_paragraph}{blankline} Produce a paragraph separation of at least \var{blankline} blank -lines, or the equivelent. The \var{blankline} value will be an +lines, or the equivalent. The \var{blankline} value will be an integer. Note that the implementation will receive a call to \method{send_line_break()} before this call if a line break is needed; this method should not include ending the last line of the paragraph. |