Skip to content

Commit 52fb9f1

Browse files
Grammar corrections in abc.rst (GH-10525)
(cherry picked from commit 8e0b05e) Co-authored-by: Andrés Delfino <[email protected]>
1 parent e7a5be5 commit 52fb9f1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Doc/library/abc.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@ see the PEP for why this was added to Python. (See also :pep:`3141` and the
1818
:mod:`numbers` module regarding a type hierarchy for numbers based on ABCs.)
1919

2020
The :mod:`collections` module has some concrete classes that derive from
21-
ABCs; these can, of course, be further derived. In addition the
21+
ABCs; these can, of course, be further derived. In addition, the
2222
:mod:`collections.abc` submodule has some ABCs that can be used to test whether
23-
a class or instance provides a particular interface, for example, is it
24-
hashable or a mapping.
23+
a class or instance provides a particular interface, for example, if it is
24+
hashable or if it is a mapping.
2525

2626

2727
This module provides the metaclass :class:`ABCMeta` for defining ABCs and

0 commit comments

Comments
 (0)