From: Raymond Hettinger Date: Sun, 13 Jan 2008 06:18:07 +0000 (+0000) Subject: Fix spelling. X-Git-Tag: v2.6a1~628 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=8bdd044dfd13621130b03e276cf1da770ccf8a1d;p=thirdparty%2FPython%2Fcpython.git Fix spelling. --- diff --git a/Doc/glossary.rst b/Doc/glossary.rst index 9aa2d7e0a828..2fa0ef789a28 100644 --- a/Doc/glossary.rst +++ b/Doc/glossary.rst @@ -342,7 +342,7 @@ Glossary named tuple Any tuple-like class whose indexable fields are also accessible with named attributes (for example, :func:`time.localtime` returns a - tuple-like object where the *year* is accessable either with an + tuple-like object where the *year* is accessible either with an index such as ``t[0]`` or with a named attribute like ``t.tm_year``). A named tuple can be a built-in type such as :class:`time.struct_time`,