Skip to content

Commit b189b94

Browse files
Apply suggestions from code review
Co-authored-by: Peter Bierma <[email protected]>
1 parent 34f496f commit b189b94

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Doc/howto/a-conceptual-overview-of-asyncio.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ Event Loop
4242
==========
4343

4444
Everything in :mod:`!asyncio` happens relative to the event loop.
45-
It's the star of the show, but prefers to work behind the scenes managing
45+
It's the star of the show, but prefers to work behind the scenes, managing
4646
and coordinating resources.
4747
It's like an orchestra conductor.
4848
Some power is explicitly granted to it, but a lot of its ability to get things
@@ -359,7 +359,7 @@ Each time a task is awaited, control needs to be passed all the way up the
359359
call stack to the event loop.
360360
Then, the event loop needs to manage its data structures and work through
361361
its processing logic to resume the next job.
362-
That might sound minor, but in a large program with many ``await``'s that
362+
That might sound minor, but in a large program with many ``await``s, that
363363
overhead can add up to a meaningful performance drag.
364364
365365
------------------------------------------------

0 commit comments

Comments
 (0)