summaryrefslogtreecommitdiff
path: root/Doc
diff options
context:
space:
mode:
authorZachary Ware <zachary.ware@gmail.com>2018-09-01 21:18:22 -0500
committerGitHub <noreply@github.com>2018-09-01 21:18:22 -0500
commit71f2dadf66c8f9f513bb67f3b06d320c406ac2ff (patch)
tree374d0fad2fe5bf00f5dd686a103a30a446c40f2e /Doc
parent5d594f3106aff6cea00234c88051427ae511cdd8 (diff)
downloadcpython-git-71f2dadf66c8f9f513bb67f3b06d320c406ac2ff.tar.gz
[2.7] Fix struct sequence glossary entry grammar (GH-9030)
... by removing a superfluous "either". Reported by Никита Люшненко on docs@ (cherry picked from commit 98b976a2f82ba5f50cf6846338f644ca6c64f47d)
Diffstat (limited to 'Doc')
-rw-r--r--Doc/glossary.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/glossary.rst b/Doc/glossary.rst
index 34c71c6f3e..9e6bf233bb 100644
--- a/Doc/glossary.rst
+++ b/Doc/glossary.rst
@@ -710,7 +710,7 @@ Glossary
struct sequence
A tuple with named elements. Struct sequences expose an interface similiar
- to :term:`named tuple` in that elements can either be accessed either by
+ to :term:`named tuple` in that elements can be accessed either by
index or as an attribute. However, they do not have any of the named tuple
methods like :meth:`~collections.somenamedtuple._make` or
:meth:`~collections.somenamedtuple._asdict`. Examples of struct sequences