summaryrefslogtreecommitdiffstats
path: root/Doc/library
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2010-12-18 16:21:58 (GMT)
committerGeorg Brandl <georg@python.org>2010-12-18 16:21:58 (GMT)
commit77570e2d0e6e14de534eb65049ceb3a1a789164c (patch)
tree33e840991def9592d78e067aeeec56ef06ace30d /Doc/library
parentac53ab64a648f512f4a232567f096b8fb14287bf (diff)
downloadcpython-77570e2d0e6e14de534eb65049ceb3a1a789164c.zip
cpython-77570e2d0e6e14de534eb65049ceb3a1a789164c.tar.gz
cpython-77570e2d0e6e14de534eb65049ceb3a1a789164c.tar.bz2
Fix typo.
Diffstat (limited to 'Doc/library')
-rw-r--r--Doc/library/collections.rst2
1 files changed, 1 insertions, 1 deletions
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 @@ If a new entry overwrites an existing entry, the
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]