]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Grammar corrections in abc.rst (GH-10525)
authorAndrés Delfino <adelfino@gmail.com>
Wed, 14 Nov 2018 00:40:44 +0000 (21:40 -0300)
committerMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Wed, 14 Nov 2018 00:40:44 +0000 (16:40 -0800)
Doc/library/abc.rst

index 0a976b12ecb9b6af011d1fc07db774b96bc90d6a..424ae547d829a4cb1dcccfc88418410ba3495e5c 100644 (file)
@@ -18,10 +18,10 @@ see the PEP for why this was added to Python. (See also :pep:`3141` and the
 :mod:`numbers` module regarding a type hierarchy for numbers based on ABCs.)
 
 The :mod:`collections` module has some concrete classes that derive from
-ABCs; these can, of course, be further derived. In addition the
+ABCs; these can, of course, be further derived. In addition, the
 :mod:`collections.abc` submodule has some ABCs that can be used to test whether
-a class or instance provides a particular interface, for example, is it
-hashable or a mapping.
+a class or instance provides a particular interface, for example, if it is
+hashable or if it is a mapping.
 
 
 This module provides the metaclass :class:`ABCMeta` for defining ABCs and