]> granicus.if.org Git - python/commitdiff
Minor grammar re-wording
authorAndrew M. Kuchling <amk@amk.ca>
Fri, 30 Apr 2010 13:46:55 +0000 (13:46 +0000)
committerAndrew M. Kuchling <amk@amk.ca>
Fri, 30 Apr 2010 13:46:55 +0000 (13:46 +0000)
Doc/reference/datamodel.rst

index 6d98ee2c787f40d049cd9b2f5e3042a888b43895..2afc3ad752b7f3e70c0c762ec3f9a1ae84c2cb96 100644 (file)
@@ -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::