]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Two typo fixes
authorAndrew M. Kuchling <amk@amk.ca>
Sun, 11 Apr 2010 12:48:08 +0000 (12:48 +0000)
committerAndrew M. Kuchling <amk@amk.ca>
Sun, 11 Apr 2010 12:48:08 +0000 (12:48 +0000)
Doc/library/functools.rst
Misc/NEWS

index 15c4a95ab49812ea18a007ceb231138fec00a290..93b2b4ae8b7643e0c5bdea85489315b4b7502576 100644 (file)
@@ -42,7 +42,7 @@ The :mod:`functools` module defines the following functions:
 .. function:: total_ordering(cls)
 
    Given a class defining one or more rich comparison ordering methods, this
-   class decorator supplies the rest.  This simplies the effort involved
+   class decorator supplies the rest.  This simplifies the effort involved
    in specifying all of the possible rich comparison operations:
 
    The class must define one of :meth:`__lt__`, :meth:`__le__`,
index 549d1b0401aed659eaa23a504a9ce67a4fa32c1e..6392cea5ac4c6b442e9f9c4138c9024291312248 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -91,7 +91,7 @@ Library
 - collections.Counter() now supports a subtract() method.
 
 - the functools module now has a total_ordering() class decorator
-  to simplify the specifying rich comparisons.
+  to simplify the specifyication of rich comparisons.
 
 - The functools module also adds cmp_to_key() as a tool to transition
   old-style comparison functions to new-style key-functions.