summaryrefslogtreecommitdiffstats
path: root/Doc/library/abc.rst
diff options
context:
space:
mode:
authorAndrés Delfino <adelfino@gmail.com>2018-11-14 00:40:44 (GMT)
committerMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2018-11-14 00:40:44 (GMT)
commit8e0b05e2f4b9fd703cbe1ae8d058852ef3781f44 (patch)
treee455001a0393f99d229149d7a82787ddc867dcdb /Doc/library/abc.rst
parentbf1355b4240173a306dd46e720ae4b696277bb41 (diff)
downloadcpython-8e0b05e2f4b9fd703cbe1ae8d058852ef3781f44.zip
cpython-8e0b05e2f4b9fd703cbe1ae8d058852ef3781f44.tar.gz
cpython-8e0b05e2f4b9fd703cbe1ae8d058852ef3781f44.tar.bz2
Grammar corrections in abc.rst (GH-10525)
Diffstat (limited to 'Doc/library/abc.rst')
-rw-r--r--Doc/library/abc.rst6
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/library/abc.rst b/Doc/library/abc.rst
index 0a976b1..424ae54 100644
--- a/Doc/library/abc.rst
+++ b/Doc/library/abc.rst
@@ -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