summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorSenthil Kumaran <orsenthil@gmail.com>2010-07-05 11:44:49 (GMT)
committerSenthil Kumaran <orsenthil@gmail.com>2010-07-05 11:44:49 (GMT)
commit3592a46c4d22202541c58d2ed0bdc463e2c4e750 (patch)
tree14db3619a5312c54ee252f02e33ba39e6a7061e8 /Doc
parent0dce815c2b3dc66794e34cd589d6873003562707 (diff)
downloadcpython-3592a46c4d22202541c58d2ed0bdc463e2c4e750.zip
cpython-3592a46c4d22202541c58d2ed0bdc463e2c4e750.tar.gz
cpython-3592a46c4d22202541c58d2ed0bdc463e2c4e750.tar.bz2
Merged revisions 82570 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r82570 | senthil.kumaran | 2010-07-05 17:11:42 +0530 (Mon, 05 Jul 2010) | 3 lines Fix: Issue9091 Minor documentation clarification. ........
Diffstat (limited to 'Doc')
-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 2bbc020..925ea54 100644
--- a/Doc/library/stdtypes.rst
+++ b/Doc/library/stdtypes.rst
@@ -800,7 +800,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])