diff --git a/Doc/glossary.rst b/Doc/glossary.rst index 6151143a97b420..ddf75974fdde57 100644 --- a/Doc/glossary.rst +++ b/Doc/glossary.rst @@ -991,12 +991,13 @@ Glossary mapping A container object that supports arbitrary key lookups and implements the - methods specified in the :class:`collections.abc.Mapping` or - :class:`collections.abc.MutableMapping` - :ref:`abstract base classes `. Examples - include :class:`dict`, :class:`collections.defaultdict`, + methods of :class:`collections.abc.Mapping` or + :class:`collections.abc.MutableMapping` :term:`abstract base classes `. + Examples include :class:`dict`, :class:`collections.defaultdict`, :class:`collections.OrderedDict` and :class:`collections.Counter`. + See more details on implemented methods :ref:`there `. + meta path finder A :term:`finder` returned by a search of :data:`sys.meta_path`. Meta path finders are related to, but different from :term:`path entry finders diff --git a/Doc/library/collections.abc.rst b/Doc/library/collections.abc.rst index 51853725b1b297..97641f3fe1e35d 100644 --- a/Doc/library/collections.abc.rst +++ b/Doc/library/collections.abc.rst @@ -313,7 +313,7 @@ Collections Abstract Base Classes -- Detailed Descriptions .. class:: Mapping MutableMapping - ABCs for read-only and mutable :term:`mappings `. + ABCs for read-only and mutable :ref:`mapping `. .. class:: MappingView ItemsView