[Python-checkins] r87371 - python/branches/py3k/Doc/library/collections.rst

georg.brandl python-checkins at python.org
Sat Dec 18 17:21:58 CET 2010


Author: georg.brandl
Date: Sat Dec 18 17:21:58 2010
New Revision: 87371

Log:
Fix typo.

Modified:
   python/branches/py3k/Doc/library/collections.rst

Modified: python/branches/py3k/Doc/library/collections.rst
==============================================================================
--- python/branches/py3k/Doc/library/collections.rst	(original)
+++ python/branches/py3k/Doc/library/collections.rst	Sat Dec 18 17:21:58 2010
@@ -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]


More information about the Python-checkins mailing list