diff options
-rw-r--r-- | Doc/library/collections.rst | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Doc/library/collections.rst b/Doc/library/collections.rst index 9f6d079253..96895dd7ac 100644 --- a/Doc/library/collections.rst +++ b/Doc/library/collections.rst @@ -28,8 +28,9 @@ Python's general purpose built-in containers, :class:`dict`, :class:`list`, ===================== ==================================================================== =========================== In addition to the concrete container classes, the collections module provides -:ref:`collections-abstract-base-classes` that can be used to test whether a class provides a -particular interface, for example, whether it is hashable or a mapping. +:ref:`abstract base classes <collections-abstract-base-classes>` that can be +used to test whether a class provides a particular interface, for example, +whether it is hashable or a mapping. .. seealso:: |