From c167712c00d2fc076f333a684d147d199120db59 Mon Sep 17 00:00:00 2001 From: Senthil Kumaran Date: Tue, 6 Jul 2010 03:06:53 +0000 Subject: [PATCH] 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' ........ --- Doc/library/stdtypes.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/library/stdtypes.rst b/Doc/library/stdtypes.rst index 4ac5803ac1a..29734fea02a 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.