summaryrefslogtreecommitdiffstats
path: root/Doc/reference
diff options
context:
space:
mode:
authorAndrew M. Kuchling <amk@amk.ca>2010-04-30 13:46:55 (GMT)
committerAndrew M. Kuchling <amk@amk.ca>2010-04-30 13:46:55 (GMT)
commitb3437c9f95b20e1ada5b51f3f6242cb708b53b91 (patch)
treed503ae8f98231623976815a3085264ff9f66d290 /Doc/reference
parenta5cd18275e333cde162281e7919adfa415b42b07 (diff)
downloadcpython-b3437c9f95b20e1ada5b51f3f6242cb708b53b91.zip
cpython-b3437c9f95b20e1ada5b51f3f6242cb708b53b91.tar.gz
cpython-b3437c9f95b20e1ada5b51f3f6242cb708b53b91.tar.bz2
Minor grammar re-wording
Diffstat (limited to 'Doc/reference')
-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 6d98ee2..2afc3ad 100644
--- a/Doc/reference/datamodel.rst
+++ b/Doc/reference/datamodel.rst
@@ -1772,7 +1772,7 @@ The following methods are used to override the default behavior of the
In particular, the metaclass :class:`abc.ABCMeta` implements these methods in
order to allow the addition of Abstract Base Classes (ABCs) as "virtual base
-classes" to any class or type (including built-in types), and including to other
+classes" to any class or type (including built-in types), including other
ABCs.
.. method:: class.__instancecheck__(self, instance)
@@ -1791,7 +1791,7 @@ 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 are called on instances, only that in this
+the lookup of special methods that are called on instances, only in this
case the instance is itself a class.
.. seealso::