summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFred Drake <fdrake@acm.org>2002-06-20 21:18:46 (GMT)
committerFred Drake <fdrake@acm.org>2002-06-20 21:18:46 (GMT)
commit473f46a8537e5ba4aa86e9026b6fff057959c587 (patch)
tree2239b871cd173afee332210d38977368bedca5e3
parent807354f3b643685d67b388c164716ccb3dffd58e (diff)
downloadcpython-473f46a8537e5ba4aa86e9026b6fff057959c587.zip
cpython-473f46a8537e5ba4aa86e9026b6fff057959c587.tar.gz
cpython-473f46a8537e5ba4aa86e9026b6fff057959c587.tar.bz2
Make the docs for string.capitalize() match those of str.capitalize()
(which makes it more clear). Closes SF bug #571767.
-rw-r--r--Doc/lib/libstring.tex2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/lib/libstring.tex b/Doc/lib/libstring.tex
index b369901..897e5ea 100644
--- a/Doc/lib/libstring.tex
+++ b/Doc/lib/libstring.tex
@@ -135,7 +135,7 @@ The functions defined in this module are:
\end{funcdesc}
\begin{funcdesc}{capitalize}{word}
- Capitalize the first character of the argument.
+ Return a copy of \var{word} with only its first character capitalized.
\end{funcdesc}
\begin{funcdesc}{capwords}{s}