[Python-checkins] python/dist/src/Doc/lib libstring.tex,1.47,1.48

fdrake@users.sourceforge.net fdrake@users.sourceforge.net
Thu, 12 Sep 2002 07:16:10 -0700


Update of /cvsroot/python/python/dist/src/Doc/lib
In directory usw-pr-cvs1:/tmp/cvs-serv14623

Modified Files:
	libstring.tex 
Log Message:
Fix typo reported by Paul Clifford.
Note that there is no str.joinfields(), use str.join() instead.


Index: libstring.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libstring.tex,v
retrieving revision 1.47
retrieving revision 1.48
diff -C2 -d -r1.47 -r1.48
*** libstring.tex	20 Jun 2002 21:18:46 -0000	1.47
--- libstring.tex	12 Sep 2002 14:16:07 -0000	1.48
***************
*** 231,237 ****
  
  \begin{funcdesc}{joinfields}{words\optional{, sep}}
!   This function behaves identical to \function{join()}.  (In the past, 
    \function{join()} was only used with one argument, while
    \function{joinfields()} was only used with two arguments.)
  \end{funcdesc}
  
--- 231,239 ----
  
  \begin{funcdesc}{joinfields}{words\optional{, sep}}
!   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}