Add missing word ("thread") to sentence about call_soon_threadsafe.
authorGuido van Rossum <guido@python.org>
Tue, 4 Feb 2014 21:49:34 +0000 (13:49 -0800)
committerGuido van Rossum <guido@python.org>
Tue, 4 Feb 2014 21:49:34 +0000 (13:49 -0800)
Doc/library/asyncio-dev.rst

index 1e82474194c640f94c6360662725b1979747c273..686e49605315ac59784859115cfe74a86bb4811b 100644 (file)
@@ -19,7 +19,7 @@ and the event loop executes the next task.
 
 To schedule a callback from a different thread, the
 :meth:`BaseEventLoop.call_soon_threadsafe` method should be used. Example to
-schedule a coroutine from a different::
+schedule a coroutine from a different thread::
 
     loop.call_soon_threadsafe(asyncio.async, coro_func())