summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2008-01-07 20:17:35 (GMT)
committerRaymond Hettinger <python@rcn.com>2008-01-07 20:17:35 (GMT)
commitfb3ced663dc321310cb319a1b9fcf3d7b7b1deae (patch)
treef7249b46c620e5b0f906a4ee41c6798797ddc67e
parent9a359210aaa7d9e0aa85f5a2084e7665bf0dae25 (diff)
downloadcpython-fb3ced663dc321310cb319a1b9fcf3d7b7b1deae.zip
cpython-fb3ced663dc321310cb319a1b9fcf3d7b7b1deae.tar.gz
cpython-fb3ced663dc321310cb319a1b9fcf3d7b7b1deae.tar.bz2
Minor markup fix
-rw-r--r--Doc/library/collections.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/collections.rst b/Doc/library/collections.rst
index e5b4dd9..e797296 100644
--- a/Doc/library/collections.rst
+++ b/Doc/library/collections.rst
@@ -533,7 +533,7 @@ faster versions that bypass error-checking and localize variable access::
def _replace(self, _map=map, **kwds):
return self._make(_map(kwds.pop, ('x', 'y'), self))
-Default values can be implemented by using :meth:`_replace`:: to
+Default values can be implemented by using :meth:`_replace` to
customize a prototype instance::
>>> Account = namedtuple('Account', 'owner balance transaction_count')