diff options
author | Éric Araujo <merwok@netwok.org> | 2011-08-13 02:47:38 +0200 |
---|---|---|
committer | Éric Araujo <merwok@netwok.org> | 2011-08-13 02:47:38 +0200 |
commit | 569ff91a5a89f1cf66cc0481bb33391285dd1468 (patch) | |
tree | ccee8e225217e2e22c65710efe4b57db3df6229d | |
parent | 5088b504bee4a89154b390611d79b0a587a3b50d (diff) | |
download | cpython-git-569ff91a5a89f1cf66cc0481bb33391285dd1468.tar.gz |
Avoid title case in flowing text (backport from 3.2)
-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:: |