summaryrefslogtreecommitdiff
path: root/Doc/glossary.rst
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2018-06-09 19:00:36 -0700
committerGitHub <noreply@github.com>2018-06-09 19:00:36 -0700
commit082920026a32eebe14691d80dd49c4614bec84b8 (patch)
tree19c1f617b1086f5a957f8cbc9a005dd9a7968c81 /Doc/glossary.rst
parent92a58417b32a45b0fb171546e39bfae8b7c4fcda (diff)
downloadcpython-git-082920026a32eebe14691d80dd49c4614bec84b8.tar.gz
Remove hyphens from phrase "picks up where it left off" (GH-7410)
(cherry picked from commit d689f976199d2e211a97d526b57cfa9871cc578d) Co-authored-by: Andrés Delfino <adelfino@gmail.com>
Diffstat (limited to 'Doc/glossary.rst')
-rw-r--r--Doc/glossary.rst6
1 files 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