diff options
Diffstat (limited to 'Objects/descrobject.c')
-rw-r--r-- | Objects/descrobject.c | 2 |
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" |