From: Éric Araujo Date: Sat, 13 Aug 2011 00:47:38 +0000 (+0200) Subject: Avoid title case in flowing text (backport from 3.2) X-Git-Tag: v2.7.3rc1~503^2^2~11^2~7 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=569ff91a5a89f1cf66cc0481bb33391285dd1468;p=thirdparty%2FPython%2Fcpython.git Avoid title case in flowing text (backport from 3.2) --- diff --git a/Doc/library/collections.rst b/Doc/library/collections.rst index 9f6d079253b3..96895dd7acec 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 ` that can be +used to test whether a class provides a particular interface, for example, +whether it is hashable or a mapping. .. seealso::