From: Éric Araujo Date: Sun, 24 Apr 2011 00:59:02 +0000 (+0200) Subject: Remove unneeded backslashes X-Git-Tag: v3.2.1b1~71^2~1 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=08c9bd57f213bd7bf4d69567fe8d2305c0f4b9c1;p=thirdparty%2FPython%2Fcpython.git Remove unneeded backslashes --- diff --git a/Doc/library/collections.rst b/Doc/library/collections.rst index 1849e4ca0ad7..d29bc175b444 100644 --- a/Doc/library/collections.rst +++ b/Doc/library/collections.rst @@ -205,14 +205,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`.