diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2018-11-14 01:03:21 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-11-14 01:03:21 (GMT) |
commit | 2094fb03069cb09247d4d85d51b30dec4296bc76 (patch) | |
tree | afd3573a09d8c310523ab29c24b9bd0d6285a8f1 /Doc/library | |
parent | 2897a04c983abe8ed4e6c2663335b5c54e86d9f5 (diff) | |
download | cpython-2094fb03069cb09247d4d85d51b30dec4296bc76.zip cpython-2094fb03069cb09247d4d85d51b30dec4296bc76.tar.gz cpython-2094fb03069cb09247d4d85d51b30dec4296bc76.tar.bz2 |
Grammar corrections in abc.rst (GH-10525)
(cherry picked from commit 8e0b05e2f4b9fd703cbe1ae8d058852ef3781f44)
Co-authored-by: Andrés Delfino <adelfino@gmail.com>
Diffstat (limited to 'Doc/library')
-rw-r--r-- | Doc/library/abc.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/library/abc.rst b/Doc/library/abc.rst index c1b1e07..fc39a2e 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 |