]> granicus.if.org Git - python/commitdiff
Close #20649: Fix typo in asyncio doc. Patch written by Brett Cannon.
authorVictor Stinner <victor.stinner@gmail.com>
Tue, 18 Feb 2014 08:22:00 +0000 (09:22 +0100)
committerVictor Stinner <victor.stinner@gmail.com>
Tue, 18 Feb 2014 08:22:00 +0000 (09:22 +0100)
Doc/library/asyncio-dev.rst

index b0d28b1e2c51dbbb690cc731f25764658f88bea1..90bae8440ee74b606bee1318eae86a12348b5761 100644 (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.