]> granicus.if.org Git - python/commitdiff
#6819: fix typo.
authorGeorg Brandl <georg@python.org>
Wed, 2 Sep 2009 20:31:26 +0000 (20:31 +0000)
committerGeorg Brandl <georg@python.org>
Wed, 2 Sep 2009 20:31:26 +0000 (20:31 +0000)
Doc/reference/datamodel.rst

index ef2f38212ae85d74381bea8d2a7d0774374bab11..e3abeb74f9632cd66c4178cd453690c50ae44c50 100644 (file)
@@ -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