diff options
author | Georg Brandl <georg@python.org> | 2009-09-02 20:31:26 +0000 |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2009-09-02 20:31:26 +0000 |
commit | c64d36149e5cbb3a403539b17a98b832a88aaeed (patch) | |
tree | 6520076e48ab4a2a6449940cd058480d4bdf8dbf /Doc/reference/datamodel.rst | |
parent | d876b652a5c05fea41b5c8c2ffa6f8b647970a88 (diff) | |
download | cpython-c64d36149e5cbb3a403539b17a98b832a88aaeed.tar.gz |
#6819: fix typo.
Diffstat (limited to 'Doc/reference/datamodel.rst')
-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 ef2f38212a..e3abeb74f9 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 |