From 082920026a32eebe14691d80dd49c4614bec84b8 Mon Sep 17 00:00:00 2001 From: "Miss Islington (bot)" <31488909+miss-islington@users.noreply.github.com> Date: Sat, 9 Jun 2018 19:00:36 -0700 Subject: [PATCH] Remove hyphens from phrase "picks up where it left off" (GH-7410) MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit (cherry picked from commit d689f976199d2e211a97d526b57cfa9871cc578d) Co-authored-by: Andrés Delfino --- Doc/glossary.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Doc/glossary.rst b/Doc/glossary.rst index 1d68e499b5..988842aefc 100644 --- a/Doc/glossary.rst +++ b/Doc/glossary.rst @@ -114,7 +114,7 @@ Glossary location execution state (including local variables and pending try-statements). When the *asynchronous generator iterator* effectively resumes with another awaitable returned by :meth:`__anext__`, it - picks-up where it left-off. See :pep:`492` and :pep:`525`. + picks up where it left off. See :pep:`492` and :pep:`525`. asynchronous iterable An object, that can be used in an :keyword:`async for` statement. @@ -435,8 +435,8 @@ Glossary Each :keyword:`yield` temporarily suspends processing, remembering the location execution state (including local variables and pending - try-statements). When the *generator iterator* resumes, it picks-up where - it left-off (in contrast to functions which start fresh on every + try-statements). When the *generator iterator* resumes, it picks up where + it left off (in contrast to functions which start fresh on every invocation). .. index:: single: generator expression -- 2.40.0