From 25221b328339fb1726b58742e91b6e49c178023a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebasti=C3=A1n=20Ram=C3=ADrez?= Date: Thu, 15 Nov 2018 09:51:56 +0400 Subject: [PATCH] Fix typo in asynchronous generator iterator documentation (GH-10542) Remove an unnecessary "that": ... will execute that the body ... -> ... will execute the body ... --- Doc/glossary.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Doc/glossary.rst b/Doc/glossary.rst index be20f2be947..daa98a5f910 100644 --- a/Doc/glossary.rst +++ b/Doc/glossary.rst @@ -112,8 +112,8 @@ Glossary This is an :term:`asynchronous iterator` which when called using the :meth:`__anext__` method returns an awaitable object which will execute - that the body of the asynchronous generator function until the - next :keyword:`yield` expression. + the body of the asynchronous generator function until the next + :keyword:`yield` expression. Each :keyword:`yield` temporarily suspends processing, remembering the location execution state (including local variables and pending