summaryrefslogtreecommitdiff
path: root/Doc
diff options
context:
space:
mode:
authorAndrés Delfino <adelfino@gmail.com>2018-11-13 22:08:09 -0300
committerMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2018-11-13 17:08:09 -0800
commit815fa49d1030b52a6e5fae924f92907240d90155 (patch)
tree98f203075ed41d6bb9471a6933c612537a2e2d44 /Doc
parent6042f462cf623b4c8c17cd53c33f3a1dfebf4c3b (diff)
downloadcpython-git-815fa49d1030b52a6e5fae924f92907240d90155.tar.gz
[2.7] Grammar corrections in abc.rst (GH-10525). (GH-10535)
(cherry picked from commit 8e0b05e2f4b9fd703cbe1ae8d058852ef3781f44) Co-authored-by: Andrés Delfino <adelfino@gmail.com>
Diffstat (limited to 'Doc')
-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 3a00a9c7cd..b5ba1391b9 100644
--- a/Doc/library/abc.rst
+++ b/Doc/library/abc.rst
@@ -19,10 +19,10 @@ 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` module 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 following class: