summaryrefslogtreecommitdiffstats
path: root/Objects/unicodeobject.c
diff options
context:
space:
mode:
authorSenthil Kumaran <orsenthil@gmail.com>2010-07-05 12:00:56 (GMT)
committerSenthil Kumaran <orsenthil@gmail.com>2010-07-05 12:00:56 (GMT)
commite51ee8a5bc2c0465c4058ba9b97d3c27a4624c16 (patch)
treeae36df14258568c729e0a7e585353c195675f4c8 /Objects/unicodeobject.c
parentfa8979867f6f122103aedbee5d31e97de976cea3 (diff)
downloadcpython-e51ee8a5bc2c0465c4058ba9b97d3c27a4624c16.zip
cpython-e51ee8a5bc2c0465c4058ba9b97d3c27a4624c16.tar.gz
cpython-e51ee8a5bc2c0465c4058ba9b97d3c27a4624c16.tar.bz2
Fix the docstrings of the capitalize method.
Diffstat (limited to 'Objects/unicodeobject.c')
-rw-r--r--Objects/unicodeobject.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/unicodeobject.c b/Objects/unicodeobject.c
index dba3d36..6270e9b 100644
--- a/Objects/unicodeobject.c
+++ b/Objects/unicodeobject.c
@@ -6705,7 +6705,7 @@ PyDoc_STRVAR(capitalize__doc__,
"S.capitalize() -> str\n\
\n\
Return a capitalized version of S, i.e. make the first character\n\
-have upper case.");
+have upper case and the rest lower case.");
static PyObject*
unicode_capitalize(PyUnicodeObject *self)