Skip to content

Commit ba1a1a0

Browse files
Apply suggestions from code review
Co-authored-by: Stan Ulbrych <[email protected]>
1 parent 421d785 commit ba1a1a0

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

InternalDocs/asyncio.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ asyncio
22
=======
33

44

5-
This document describes the working and implementation details
5+
This document describes the working and implementation details of the
66
[`asyncio`](https://docs.python.org/3/library/asyncio.html) module.
77

88
# Task management
@@ -213,9 +213,9 @@ 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 the it needs
216+
the finalization (execution of finally blocks) of it needs
217217
to be done while the loop is running.
218-
Most async generators are closed automatically when
218+
Most async generators are closed automatically
219219
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.

0 commit comments

Comments
 (0)