[Python-checkins] cpython: Fix markup.
raymond.hettinger
python-checkins at python.org
Tue Apr 12 02:57:50 CEST 2011
http://hg.python.org/cpython/rev/5e87dd117f74
changeset: 69265:5e87dd117f74
parent: 69262:5062b5286eba
user: Raymond Hettinger <python at rcn.com>
date: Mon Apr 11 17:57:21 2011 -0700
summary:
Fix markup.
files:
Doc/library/collections.rst | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/Doc/library/collections.rst b/Doc/library/collections.rst
--- a/Doc/library/collections.rst
+++ b/Doc/library/collections.rst
@@ -60,9 +60,9 @@
Lookups search the underlying mappings successively until a key is found. In
contrast, writes, updates, and deletions only operate on the first mapping.
- A class:`ChainMap` incorporates the underlying mappings by reference. So, if
+ A :class:`ChainMap` incorporates the underlying mappings by reference. So, if
one of the underlying mappings gets updated, those changes will be reflected
- in class:`ChainMap`.
+ in :class:`ChainMap`.
All of the usual dictionary methods are supported. In addition, there is a
*maps* attribute, a method for creating new subcontexts, and a property for
--
Repository URL: http://hg.python.org/cpython
More information about the Python-checkins
mailing list