Skip to content

Commit 039ccf6

Browse files
Apply suggestions from code review
Co-authored-by: Guido van Rossum <gvanrossum@gmail.com>
1 parent ba1a1a0 commit 039ccf6

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

InternalDocs/asyncio.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -213,10 +213,10 @@ locking.
213213
This section describes the implementation details of async generators in `asyncio`.
214214

215215
Since async generators are meant to be used from coroutines,
216-
the finalization (execution of finally blocks) of it needs
216+
their finalization (execution of finally blocks) needs
217217
to be done while the loop is running.
218218
Most async generators are closed automatically
219-
when they are fully iterated over and exhausted, however,
219+
when they are fully iterated over and exhausted; however,
220220
if the async generator is not fully iterated over,
221221
it may not be closed properly, leading to the `finally` blocks not being executed.
222222

0 commit comments

Comments
 (0)