Fix typo.
diff --git a/Doc/library/collections.rst b/Doc/library/collections.rst
index bc3801a..3e03dee 100644
--- a/Doc/library/collections.rst
+++ b/Doc/library/collections.rst
@@ -866,7 +866,7 @@
 original insertion position is changed and moved to the end::
 
     class LastUpdatedOrderedDict(OrderedDict):
-        'Store items is the order the keys were last added'
+        'Store items in the order the keys were last added'
         def __setitem__(self, key, value):
             if key in self:
                 del self[key]