diff --git a/Doc/library/collections.rst b/Doc/library/collections.rst index 15ed173aaaa..6039a150312 100644 --- a/Doc/library/collections.rst +++ b/Doc/library/collections.rst @@ -134,7 +134,7 @@ The class can be used to simulate nested scopes and is useful in templating. * The `MultiContext class `_ in the Enthought `CodeTools package - `_\ has options to support + `_ has options to support writing to any mapping in the chain. * Django's `Context class @@ -150,7 +150,7 @@ The class can be used to simulate nested scopes and is useful in templating. any mapping in the chain. * A `greatly simplified read-only version of Chainmap - `_\. + `_. :class:`Counter` objects ------------------------ @@ -320,14 +320,14 @@ counts, but the output will exclude results with counts of zero or less. * `Bag class `_ in Smalltalk. - * Wikipedia entry for `Multisets `_\. + * Wikipedia entry for `Multisets `_. * `C++ multisets `_ tutorial with examples. * For mathematical operations on multisets and their use cases, see *Knuth, Donald. The Art of Computer Programming Volume II, - Section 4.6.3, Exercise 19*\. + Section 4.6.3, Exercise 19*. * To enumerate all distinct multisets of a given size over a given set of elements, see :func:`itertools.combinations_with_replacement`.