summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2010-04-14 21:46:45 (GMT)
committerGeorg Brandl <georg@python.org>2010-04-14 21:46:45 (GMT)
commit9f5fd6092b361282f393cf8ca875554b592140cb (patch)
treef2d29e1569212c6c5860dcc68163dbe49145cb33 /Doc
parentc9a8a4aab8873fe1b12758616bebba1d7f38675f (diff)
downloadcpython-9f5fd6092b361282f393cf8ca875554b592140cb.zip
cpython-9f5fd6092b361282f393cf8ca875554b592140cb.tar.gz
cpython-9f5fd6092b361282f393cf8ca875554b592140cb.tar.bz2
Fix missing.
Diffstat (limited to 'Doc')
-rw-r--r--Doc/reference/datamodel.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/reference/datamodel.rst b/Doc/reference/datamodel.rst
index 9b18715..6d98ee2 100644
--- a/Doc/reference/datamodel.rst
+++ b/Doc/reference/datamodel.rst
@@ -1791,8 +1791,8 @@ ABCs.
Note that these methods are looked up on the type (metaclass) of a class. They
cannot be defined as class methods in the actual class. This is consistent with
-the lookup of special methods that called on instances, only that in this case
-the instance is itself a class.
+the lookup of special methods that are called on instances, only that in this
+case the instance is itself a class.
.. seealso::