[Python-checkins] r58938 - python/trunk/Objects/descrobject.c

andrew.kuchling python-checkins at python.org
Mon Nov 12 02:25:22 CET 2007


Author: andrew.kuchling
Date: Mon Nov 12 02:25:21 2007
New Revision: 58938

Modified:
   python/trunk/Objects/descrobject.c
Log:
Re-word sentence

Modified: python/trunk/Objects/descrobject.c
==============================================================================
--- python/trunk/Objects/descrobject.c	(original)
+++ python/trunk/Objects/descrobject.c	Mon Nov 12 02:25:21 2007
@@ -1273,7 +1273,7 @@
 "    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"


More information about the Python-checkins mailing list