]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Fix typo reported by Paul Clifford.
authorFred Drake <fdrake@acm.org>
Thu, 12 Sep 2002 14:16:31 +0000 (14:16 +0000)
committerFred Drake <fdrake@acm.org>
Thu, 12 Sep 2002 14:16:31 +0000 (14:16 +0000)
Note that there is no str.joinfields(), use str.join() instead.

Doc/lib/libstring.tex

index 897e5ea892f1fd2312d4bbb3370ce0768ee18240..99bb5eefa35e46158f5b1482967f914c8f9e4e81 100644 (file)
@@ -230,9 +230,11 @@ The functions defined in this module are:
 \end{funcdesc}
 
 \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{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}
 
 \begin{funcdesc}{lstrip}{s\optional{, chars}}