[Python-checkins] r59936 - python/trunk/Doc/glossary.rst

raymond.hettinger python-checkins at python.org
Sun Jan 13 07:18:08 CET 2008


Author: raymond.hettinger
Date: Sun Jan 13 07:18:07 2008
New Revision: 59936

Modified:
   python/trunk/Doc/glossary.rst
Log:
Fix spelling.

Modified: python/trunk/Doc/glossary.rst
==============================================================================
--- python/trunk/Doc/glossary.rst	(original)
+++ python/trunk/Doc/glossary.rst	Sun Jan 13 07:18:07 2008
@@ -342,7 +342,7 @@
    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`,


More information about the Python-checkins mailing list