From: Raymond Hettinger Date: Mon, 7 Jan 2008 20:17:35 +0000 (+0000) Subject: Minor markup fix X-Git-Tag: v2.6a1~681 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=fb3ced663dc321310cb319a1b9fcf3d7b7b1deae;p=python Minor markup fix --- diff --git a/Doc/library/collections.rst b/Doc/library/collections.rst index e5b4dd965d..e797296418 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')