Fix typo reported by Paul Clifford.

Note that there is no str.joinfields(), use str.join() instead.
This commit is contained in:
Fred Drake 2002-09-12 14:16:07 +00:00
parent 5c1ad84d7f
commit b7c1895ec5
1 changed files with 3 additions and 1 deletions

View File

@ -230,9 +230,11 @@ The functions defined in this module are:
\end{funcdesc} \end{funcdesc}
\begin{funcdesc}{joinfields}{words\optional{, sep}} \begin{funcdesc}{joinfields}{words\optional{, sep}}
This function behaves identical to \function{join()}. (In the past, This function behaves identically to \function{join()}. (In the past,
\function{join()} was only used with one argument, while \function{join()} was only used with one argument, while
\function{joinfields()} was only used with two arguments.) \function{joinfields()} was only used with two arguments.)
Note that there is no \method{joinfields()} method on string
objects; use the \method{join()} method instead.
\end{funcdesc} \end{funcdesc}
\begin{funcdesc}{lstrip}{s\optional{, chars}} \begin{funcdesc}{lstrip}{s\optional{, chars}}