From 09eff1a720c6710d969ffb95a4ed618ca34483e4 Mon Sep 17 00:00:00 2001 From: Zachary Ware Date: Sat, 1 Sep 2018 20:59:27 -0500 Subject: [PATCH] Fix struct sequence glossary entry grammar (GH-9030) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ... by removing a superfluous "either". Reported by Никита Люшненко on docs@. (cherry picked from commit 98b976a2f82ba5f50cf6846338f644ca6c64f47d) Co-authored-by: Zachary Ware --- Doc/glossary.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/glossary.rst b/Doc/glossary.rst index 12f88a9d736da92..cf2ca671f26dd7d 100644 --- a/Doc/glossary.rst +++ b/Doc/glossary.rst @@ -1006,7 +1006,7 @@ Glossary struct sequence A tuple with named elements. Struct sequences expose an interface similar - 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