summaryrefslogtreecommitdiffstats
path: root/Doc/lib/libstring.tex
diff options
context:
space:
mode:
authorFred Drake <fdrake@acm.org>2002-09-12 14:16:07 (GMT)
committerFred Drake <fdrake@acm.org>2002-09-12 14:16:07 (GMT)
commitb7c1895ec5897da12038827ebc1705d2834598ba (patch)
tree6eb1f55e27c6099844f7fda6c6a3f492e5013bd9 /Doc/lib/libstring.tex
parent5c1ad84d7f62d3e2ec5367c8727481cda072820f (diff)
downloadcpython-b7c1895ec5897da12038827ebc1705d2834598ba.zip
cpython-b7c1895ec5897da12038827ebc1705d2834598ba.tar.gz
cpython-b7c1895ec5897da12038827ebc1705d2834598ba.tar.bz2
Fix typo reported by Paul Clifford.
Note that there is no str.joinfields(), use str.join() instead.
Diffstat (limited to 'Doc/lib/libstring.tex')
-rw-r--r--Doc/lib/libstring.tex4
1 files changed, 3 insertions, 1 deletions
diff --git a/Doc/lib/libstring.tex b/Doc/lib/libstring.tex
index 897e5ea..99bb5ee 100644
--- a/Doc/lib/libstring.tex
+++ b/Doc/lib/libstring.tex
@@ -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}}