From 98b976a2f82ba5f50cf6846338f644ca6c64f47d 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=utf8 Content-Transfer-Encoding: 8bit ... by removing a superfluous "either". Reported by Никита Люшненко on docs@. --- Doc/glossary.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/glossary.rst b/Doc/glossary.rst index 69960579f2..16fc7f0783 100644 --- a/Doc/glossary.rst +++ b/Doc/glossary.rst @@ -1012,7 +1012,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 -- 2.40.0