diff options
author | Raymond Hettinger <python@rcn.com> | 2012-07-16 09:07:41 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2012-07-16 09:07:41 (GMT) |
commit | b22ba046ae8219b03b153c742f475cb4292a1dee (patch) | |
tree | 6a5859b8ecedc2f7fa0d5cd4f0678737cb283c0a | |
parent | b2269baca3da855179c927a87f0703ec6b447f7e (diff) | |
download | cpython-b22ba046ae8219b03b153c742f475cb4292a1dee.zip cpython-b22ba046ae8219b03b153c742f475cb4292a1dee.tar.gz cpython-b22ba046ae8219b03b153c742f475cb4292a1dee.tar.bz2 |
Fix typo
-rw-r--r-- | Doc/library/collections.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/collections.rst b/Doc/library/collections.rst index c15885e..88d7981 100644 --- a/Doc/library/collections.rst +++ b/Doc/library/collections.rst @@ -86,7 +86,7 @@ The class can be used to simulate nested scopes and is useful in templating. .. attribute:: parents - Proerty returning a new :class:`ChainMap` containing all of the maps in + Property returning a new :class:`ChainMap` containing all of the maps in the current instance except the first one. This is useful for skipping the first map in the search. Use cases are similar to those for the :keyword:`nonlocal` keyword used in :term:`nested scopes <nested |