From 18793e1f60054a77cdff6625d9e3bdfa36b51439 Mon Sep 17 00:00:00 2001 From: "Miss Islington (bot)" <31488909+miss-islington@users.noreply.github.com> Date: Fri, 15 Jun 2018 20:00:36 -0700 Subject: [PATCH] Improve the grammar in the glossary item for `list` MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit " ... access to elements is O(1)." (cherry picked from commit 7469ff5017ec315a81e35913f19a32f0dbdf712e) Co-authored-by: Andrés Delfino --- Doc/glossary.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/glossary.rst b/Doc/glossary.rst index 988842aefc..0f658b8c7e 100644 --- a/Doc/glossary.rst +++ b/Doc/glossary.rst @@ -642,7 +642,7 @@ Glossary list A built-in Python :term:`sequence`. Despite its name it is more akin to an array in other languages than to a linked list since access to - elements are O(1). + elements is O(1). list comprehension A compact way to process all or part of the elements in a sequence and -- 2.50.1