Skip to content

Commit d5dfddf

Browse files
committed
gh-149093: Corrected circular link for mapping in the documentation
1 parent f27e91e commit d5dfddf

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

Doc/glossary.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -991,12 +991,12 @@ Glossary
991991

992992
mapping
993993
A container object that supports arbitrary key lookups and implements the
994-
methods specified in the :class:`collections.abc.Mapping` or
995-
:class:`collections.abc.MutableMapping`
996-
:ref:`abstract base classes <collections-abstract-base-classes>`. Examples
997-
include :class:`dict`, :class:`collections.defaultdict`,
994+
methods of :class:`collections.abc.Mapping` or
995+
:class:`collections.abc.MutableMapping` :term:`abstract base classes <abstract base class>`.
996+
Examples include :class:`dict`, :class:`collections.defaultdict`,
998997
:class:`collections.OrderedDict` and :class:`collections.Counter`.
999998

999+
See more details on implemented methods :ref:`there <collections-abstract-base-classes>`.
10001000
meta path finder
10011001
A :term:`finder` returned by a search of :data:`sys.meta_path`. Meta path
10021002
finders are related to, but different from :term:`path entry finders

Doc/library/collections.abc.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -313,7 +313,7 @@ Collections Abstract Base Classes -- Detailed Descriptions
313313
.. class:: Mapping
314314
MutableMapping
315315

316-
ABCs for read-only and mutable :term:`mappings <mapping>`.
316+
ABCs for read-only and mutable :ref:`mapping <typesmapping>`.
317317

318318
.. class:: MappingView
319319
ItemsView

0 commit comments

Comments
 (0)