Fix spelling.

This commit is contained in:
Raymond Hettinger 2008-01-13 06:18:07 +00:00
parent c20ed51dc3
commit 8bdd044dfd
1 changed files with 1 additions and 1 deletions

View File

@ -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`,