summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorÉric Araujo <merwok@netwok.org>2011-04-24 00:59:02 (GMT)
committerÉric Araujo <merwok@netwok.org>2011-04-24 00:59:02 (GMT)
commit08c9bd57f213bd7bf4d69567fe8d2305c0f4b9c1 (patch)
tree31c03277d0b1b5f5b7632e0a48def315fa0acf6e
parentb547148d163d54612528e0c4f2b133dc9ca7cb49 (diff)
downloadcpython-08c9bd57f213bd7bf4d69567fe8d2305c0f4b9c1.zip
cpython-08c9bd57f213bd7bf4d69567fe8d2305c0f4b9c1.tar.gz
cpython-08c9bd57f213bd7bf4d69567fe8d2305c0f4b9c1.tar.bz2
Remove unneeded backslashes
-rw-r--r--Doc/library/collections.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/collections.rst b/Doc/library/collections.rst
index 1849e4c..d29bc17 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 <http://www.gnu.org/software/smalltalk/manual-base/html_node/Bag.html>`_
in Smalltalk.
- * Wikipedia entry for `Multisets <http://en.wikipedia.org/wiki/Multiset>`_\.
+ * Wikipedia entry for `Multisets <http://en.wikipedia.org/wiki/Multiset>`_.
* `C++ multisets <http://www.demo2s.com/Tutorial/Cpp/0380__set-multiset/Catalog0380__set-multiset.htm>`_
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`.