]> granicus.if.org Git - python/commitdiff
Remove hyphens from phrase "picks up where it left off" (GH-7410)
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Sun, 10 Jun 2018 02:00:36 +0000 (19:00 -0700)
committerGitHub <noreply@github.com>
Sun, 10 Jun 2018 02:00:36 +0000 (19:00 -0700)
(cherry picked from commit d689f976199d2e211a97d526b57cfa9871cc578d)

Co-authored-by: Andrés Delfino <adelfino@gmail.com>
Doc/glossary.rst

index 1d68e499b5280f8114936858da68174c7d46fe69..988842aefc0d67e1f3f23bcf290810e25b4c4bb9 100644 (file)
@@ -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