]> granicus.if.org Git - python/commitdiff
Fix typo reported by Sandro Tosi.
authorEzio Melotti <ezio.melotti@gmail.com>
Sun, 31 Jul 2011 19:48:45 +0000 (22:48 +0300)
committerEzio Melotti <ezio.melotti@gmail.com>
Sun, 31 Jul 2011 19:48:45 +0000 (22:48 +0300)
Doc/howto/descriptor.rst

index 55a1d62320baa1bf630c76528e9d229665c1496a..78c1439f28fe3297e3f24035226a3edf63e4e180 100644 (file)
@@ -42,7 +42,7 @@ classes (a class is new style if it inherits from :class:`object` or
 
 Descriptors are a powerful, general purpose protocol.  They are the mechanism
 behind properties, methods, static methods, class methods, and :func:`super()`.
-They are used used throughout Python itself to implement the new style classes
+They are used throughout Python itself to implement the new style classes
 introduced in version 2.2.  Descriptors simplify the underlying C-code and offer
 a flexible set of new tools for everyday Python programs.