Two typo fixes
diff --git a/Doc/library/functools.rst b/Doc/library/functools.rst
index 15c4a95..93b2b4a 100644
--- a/Doc/library/functools.rst
+++ b/Doc/library/functools.rst
@@ -42,7 +42,7 @@
.. 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__`,
diff --git a/Misc/NEWS b/Misc/NEWS
index 549d1b0..6392cea 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -91,7 +91,7 @@
- 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.