summaryrefslogtreecommitdiffstats
path: root/Objects
diff options
context:
space:
mode:
authorAndrew M. Kuchling <amk@amk.ca>2007-11-12 01:25:21 (GMT)
committerAndrew M. Kuchling <amk@amk.ca>2007-11-12 01:25:21 (GMT)
commitabfe45368c76bb9f705ee9b84b31a08856b38e97 (patch)
tree7a90e681f83c1c44f4984e2926f83d6eb3ce56cb /Objects
parentced1646b9e53171276befafd216a13d8be62cf83 (diff)
downloadcpython-abfe45368c76bb9f705ee9b84b31a08856b38e97.zip
cpython-abfe45368c76bb9f705ee9b84b31a08856b38e97.tar.gz
cpython-abfe45368c76bb9f705ee9b84b31a08856b38e97.tar.bz2
Re-word sentence
Diffstat (limited to 'Objects')
-rw-r--r--Objects/descrobject.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/descrobject.c b/Objects/descrobject.c
index 094bf71..56599ef 100644
--- a/Objects/descrobject.c
+++ b/Objects/descrobject.c
@@ -1273,7 +1273,7 @@ PyDoc_STRVAR(property_doc,
" def delx(self): del self._x\n"
" x = property(getx, setx, delx, \"I'm the 'x' property.\")\n"
"\n"
-"Decorators makes defining new or modifying existing properties easy:\n"
+"Decorators make defining new properties or modifying existing ones easy:\n"
"class C(object):\n"
" @property\n"
" def x(self): return self._x\n"