summaryrefslogtreecommitdiffstats
path: root/Doc/glossary.rst
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2008-01-13 06:18:07 (GMT)
committerRaymond Hettinger <python@rcn.com>2008-01-13 06:18:07 (GMT)
commit8bdd044dfd13621130b03e276cf1da770ccf8a1d (patch)
treea8f73f90b1d321280aedab8d5a964ac6106ce240 /Doc/glossary.rst
parentc20ed51dc38b77cfcd169ab4aed3cb2b5aa9d961 (diff)
downloadcpython-8bdd044dfd13621130b03e276cf1da770ccf8a1d.zip
cpython-8bdd044dfd13621130b03e276cf1da770ccf8a1d.tar.gz
cpython-8bdd044dfd13621130b03e276cf1da770ccf8a1d.tar.bz2
Fix spelling.
Diffstat (limited to 'Doc/glossary.rst')
-rw-r--r--Doc/glossary.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/glossary.rst b/Doc/glossary.rst
index 9aa2d7e..2fa0ef7 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`,