summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSenthil Kumaran <orsenthil@gmail.com>2010-07-06 03:06:53 (GMT)
committerSenthil Kumaran <orsenthil@gmail.com>2010-07-06 03:06:53 (GMT)
commitc167712c00d2fc076f333a684d147d199120db59 (patch)
tree5831d55da16521166ffc4433e66dd110e0785eb7
parentd2d23784c983004aa8f9e2dd2dd4279cc91f89ab (diff)
downloadcpython-c167712c00d2fc076f333a684d147d199120db59.zip
cpython-c167712c00d2fc076f333a684d147d199120db59.tar.gz
cpython-c167712c00d2fc076f333a684d147d199120db59.tar.bz2
Merged revisions 82601 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r82601 | senthil.kumaran | 2010-07-06 07:38:36 +0530 (Tue, 06 Jul 2010) | 3 lines Change 'lowered' to 'lowercased' ........
-rw-r--r--Doc/library/stdtypes.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/stdtypes.rst b/Doc/library/stdtypes.rst
index 4ac5803..29734fe 100644
--- a/Doc/library/stdtypes.rst
+++ b/Doc/library/stdtypes.rst
@@ -831,7 +831,7 @@ string functions based on regular expressions.
.. method:: str.capitalize()
Return a copy of the string with its first character capitalized and the
- rest lowered.
+ rest lowercased.
For 8-bit strings, this method is locale-dependent.