summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2009-04-07 02:09:15 (GMT)
committerRaymond Hettinger <python@rcn.com>2009-04-07 02:09:15 (GMT)
commit15efcb6f9d5324d3f7a4d1188edd45a28f313288 (patch)
treeb9043e3f495af52585e260220b652aaefa5a330b /Doc
parent958e368a68239161cc0114567ff032b24964426a (diff)
downloadcpython-15efcb6f9d5324d3f7a4d1188edd45a28f313288.zip
cpython-15efcb6f9d5324d3f7a4d1188edd45a28f313288.tar.gz
cpython-15efcb6f9d5324d3f7a4d1188edd45a28f313288.tar.bz2
Fix internal link.
Diffstat (limited to 'Doc')
-rw-r--r--Doc/reference/datamodel.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/reference/datamodel.rst b/Doc/reference/datamodel.rst
index c2c3241..eb63834 100644
--- a/Doc/reference/datamodel.rst
+++ b/Doc/reference/datamodel.rst
@@ -1541,8 +1541,8 @@ explored including logging, interface checking, automatic delegation, automatic
property creation, proxies, frameworks, and automatic resource
locking/synchronization.
-Here is an example of a metaclass that uses an :class:`OrderedDict` to
-remember the order that class members were defined::
+Here is an example of a metaclass that uses an :class:`collections.OrderedDict`
+to remember the order that class members were defined::
class OrderedClass(type):