]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Fix typo reported by Sandro Tosi.
authorEzio Melotti <ezio.melotti@gmail.com>
Sun, 31 Jul 2011 19:49:18 +0000 (22:49 +0300)
committerEzio Melotti <ezio.melotti@gmail.com>
Sun, 31 Jul 2011 19:49:18 +0000 (22:49 +0300)
Doc/howto/descriptor.rst

index 81bb8ca534d7b5c4c3ce21e7b2a276fcc16385ae..1616f67e126d208f0f67eb2a6f097efe00e17ed7 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.