From 3c9bb69fa176bb6aed98c075be1e71285043bdce Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Tue, 4 Feb 2014 13:49:34 -0800 Subject: Add missing word ("thread") to sentence about call_soon_threadsafe. --- Doc/library/asyncio-dev.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/library/asyncio-dev.rst b/Doc/library/asyncio-dev.rst index 1e82474..686e496 100644 --- a/Doc/library/asyncio-dev.rst +++ b/Doc/library/asyncio-dev.rst @@ -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()) -- cgit v0.12