From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Sun, 2 Sep 2018 02:13:43 +0000 (-0400) Subject: Fix struct sequence glossary entry grammar (GH-9030) X-Git-Tag: v3.6.7rc1~77 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=f4c4d994ee1d49d9455f72445e9cb689a215afbf;p=thirdparty%2FPython%2Fcpython.git Fix struct sequence glossary entry grammar (GH-9030) ... by removing a superfluous "either". Reported by Никита Люшненко on docs@. (cherry picked from commit 98b976a2f82ba5f50cf6846338f644ca6c64f47d) Co-authored-by: Zachary Ware --- diff --git a/Doc/glossary.rst b/Doc/glossary.rst index 12f88a9d736d..cf2ca671f26d 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