diff options
author | Georg Brandl <georg@python.org> | 2009-09-02 20:31:26 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2009-09-02 20:31:26 (GMT) |
commit | 5dbb84a23440977fa4ae84a75829dff563f35862 (patch) | |
tree | df78b666807f1f1803fb251de6556131a77628ff /Doc/reference | |
parent | d02c1028fc58d3ae27ac6b8b2193700f9a0957f3 (diff) | |
download | cpython-5dbb84a23440977fa4ae84a75829dff563f35862.zip cpython-5dbb84a23440977fa4ae84a75829dff563f35862.tar.gz cpython-5dbb84a23440977fa4ae84a75829dff563f35862.tar.bz2 |
#6819: fix typo.
Diffstat (limited to 'Doc/reference')
-rw-r--r-- | Doc/reference/datamodel.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/reference/datamodel.rst b/Doc/reference/datamodel.rst index ef2f382..e3abeb7 100644 --- a/Doc/reference/datamodel.rst +++ b/Doc/reference/datamodel.rst @@ -666,7 +666,7 @@ Modules of the shared library file. Custom classes - Custon class types are typically created by class definitions (see section + Custom class types are typically created by class definitions (see section :ref:`class`). A class has a namespace implemented by a dictionary object. Class attribute references are translated to lookups in this dictionary, e.g., ``C.x`` is translated to ``C.__dict__["x"]`` (although there are a number of |