[Python-checkins] r74627 - python/branches/py3k/Doc/reference/datamodel.rst

georg.brandl python-checkins at python.org
Wed Sep 2 22:31:26 CEST 2009


Author: georg.brandl
Date: Wed Sep  2 22:31:26 2009
New Revision: 74627

Log:
#6819: fix typo.

Modified:
   python/branches/py3k/Doc/reference/datamodel.rst

Modified: python/branches/py3k/Doc/reference/datamodel.rst
==============================================================================
--- python/branches/py3k/Doc/reference/datamodel.rst	(original)
+++ python/branches/py3k/Doc/reference/datamodel.rst	Wed Sep  2 22:31:26 2009
@@ -666,7 +666,7 @@
    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


More information about the Python-checkins mailing list