diff options
author | Raymond Hettinger <python@rcn.com> | 2009-04-07 02:09:15 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2009-04-07 02:09:15 (GMT) |
commit | 15efcb6f9d5324d3f7a4d1188edd45a28f313288 (patch) | |
tree | b9043e3f495af52585e260220b652aaefa5a330b /Doc | |
parent | 958e368a68239161cc0114567ff032b24964426a (diff) | |
download | cpython-15efcb6f9d5324d3f7a4d1188edd45a28f313288.zip cpython-15efcb6f9d5324d3f7a4d1188edd45a28f313288.tar.gz cpython-15efcb6f9d5324d3f7a4d1188edd45a28f313288.tar.bz2 |
Fix internal link.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/reference/datamodel.rst | 4 |
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): |