Skip to content

Commit a8fa7f6

Browse files
committed
phrasing nits
1 parent 1422011 commit a8fa7f6

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

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

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -192,8 +192,9 @@ For example, consider this program::
192192
Because the coroutine ``main()`` exits before awaiting the task and no other
193193
references to the task are made, the task object ``hello_task`` *might* be
194194
garbage collected before the event loop invokes it.
195-
Despite that, ``asyncio`` and Python's garbage collector work pretty hard
196-
to ensure this doesn't happen.
195+
That example still actually ends up running ``hello_task``, because
196+
``asyncio`` and Python's garbage collector work pretty hard to ensure this
197+
sort of thing doesn't happen.
197198
But that's no reason to be reckless!
198199

199200
Since there's only one event loop (in each thread), :mod:`!asyncio` takes care of

0 commit comments

Comments
 (0)