diff options
author | Andrés Delfino <adelfino@gmail.com> | 2018-06-10 01:43:45 (GMT) |
---|---|---|
committer | Mariatta <Mariatta@users.noreply.github.com> | 2018-06-10 01:43:45 (GMT) |
commit | d689f976199d2e211a97d526b57cfa9871cc578d (patch) | |
tree | 2db111d9f860b64909e959f9036f4847b8e84e72 /Doc | |
parent | 0e0534c4024c181aa47a300142c59eeeee71db46 (diff) | |
download | cpython-d689f976199d2e211a97d526b57cfa9871cc578d.zip cpython-d689f976199d2e211a97d526b57cfa9871cc578d.tar.gz cpython-d689f976199d2e211a97d526b57cfa9871cc578d.tar.bz2 |
Remove hyphens from phrase "picks up where it left off" (GH-7410)
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/glossary.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/glossary.rst b/Doc/glossary.rst index 1d68e49..988842a 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 |