summaryrefslogtreecommitdiffstats
path: root/Doc/library
diff options
context:
space:
mode:
authorSenthil Kumaran <orsenthil@gmail.com>2010-07-05 11:41:42 (GMT)
committerSenthil Kumaran <orsenthil@gmail.com>2010-07-05 11:41:42 (GMT)
commitfa8979867f6f122103aedbee5d31e97de976cea3 (patch)
tree4e17ee5adf57e43e47d2749390d2e8d7a6e435ad /Doc/library
parent058173e2b273263b91f2586d080324fbdb8b704b (diff)
downloadcpython-fa8979867f6f122103aedbee5d31e97de976cea3.zip
cpython-fa8979867f6f122103aedbee5d31e97de976cea3.tar.gz
cpython-fa8979867f6f122103aedbee5d31e97de976cea3.tar.bz2
Fix: Issue9091 Minor documentation clarification.
Diffstat (limited to 'Doc/library')
-rw-r--r--Doc/library/stdtypes.rst3
1 files changed, 2 insertions, 1 deletions
diff --git a/Doc/library/stdtypes.rst b/Doc/library/stdtypes.rst
index e62fee4..f8b3254 100644
--- a/Doc/library/stdtypes.rst
+++ b/Doc/library/stdtypes.rst
@@ -966,7 +966,8 @@ functions based on regular expressions.
.. method:: str.capitalize()
- Return a copy of the string with only its first character capitalized.
+ Return a copy of the string with its first character capitalized and the
+ rest lowered.
.. method:: str.center(width[, fillchar])