summaryrefslogtreecommitdiffstats
path: root/Doc/library/collections.rst
diff options
context:
space:
mode:
authorÉric Araujo <merwok@netwok.org>2011-04-24 01:00:58 (GMT)
committerÉric Araujo <merwok@netwok.org>2011-04-24 01:00:58 (GMT)
commit405d77872bebce732fcab8ca872c7cb7d3d20f36 (patch)
tree090baf54c31719330cb3b9fad4139d4132f4370a /Doc/library/collections.rst
parent92952cc1814bff0af455d79371ef5554d242a93e (diff)
parent08c9bd57f213bd7bf4d69567fe8d2305c0f4b9c1 (diff)
downloadcpython-405d77872bebce732fcab8ca872c7cb7d3d20f36.zip
cpython-405d77872bebce732fcab8ca872c7cb7d3d20f36.tar.gz
cpython-405d77872bebce732fcab8ca872c7cb7d3d20f36.tar.bz2
Remove unneeded backslashes
Diffstat (limited to 'Doc/library/collections.rst')
-rw-r--r--Doc/library/collections.rst8
1 files changed, 4 insertions, 4 deletions
diff --git a/Doc/library/collections.rst b/Doc/library/collections.rst
index 15ed173..6039a15 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
<http://svn.enthought.com/svn/enthought/CodeTools/trunk/enthought/contexts/multi_context.py>`_
in the Enthought `CodeTools package
- <https://github.com/enthought/codetools>`_\ has options to support
+ <https://github.com/enthought/codetools>`_ 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
- <http://code.activestate.com/recipes/305268/>`_\.
+ <http://code.activestate.com/recipes/305268/>`_.
:class:`Counter` objects
------------------------
@@ -320,14 +320,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`.