Re-word sentence

This commit is contained in:
Andrew M. Kuchling 2007-11-12 01:25:21 +00:00
parent ced1646b9e
commit abfe45368c
1 changed files with 1 additions and 1 deletions

View File

@ -1273,7 +1273,7 @@ PyDoc_STRVAR(property_doc,
" def delx(self): del self._x\n" " def delx(self): del self._x\n"
" x = property(getx, setx, delx, \"I'm the 'x' property.\")\n" " x = property(getx, setx, delx, \"I'm the 'x' property.\")\n"
"\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" "class C(object):\n"
" @property\n" " @property\n"
" def x(self): return self._x\n" " def x(self): return self._x\n"