Close #20649: Fix typo in asyncio doc. Patch written by Brett Cannon.

This commit is contained in:
Victor Stinner 2014-02-18 09:22:00 +01:00
parent 7d02d50504
commit 0aba4dc1ed
1 changed files with 1 additions and 1 deletions

View File

@ -13,7 +13,7 @@ Concurrency and multithreading
------------------------------
An event loop runs in a thread and executes all callbacks and tasks in the same
thread. While a task in running in the event loop, no other task is running in
thread. While a task is running in the event loop, no other task is running in
the same thread. But when the task uses ``yield from``, the task is suspended
and the event loop executes the next task.