summaryrefslogtreecommitdiffstats
path: root/Doc/library/asyncio-dev.rst
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2014-02-04 21:49:34 (GMT)
committerGuido van Rossum <guido@python.org>2014-02-04 21:49:34 (GMT)
commit3c9bb69fa176bb6aed98c075be1e71285043bdce (patch)
tree89dd5544f669c850d7392717a5e50a76c59f6bf8 /Doc/library/asyncio-dev.rst
parent5cb84ed5b19206671205b16be0f0dc2480ffed40 (diff)
downloadcpython-3c9bb69fa176bb6aed98c075be1e71285043bdce.zip
cpython-3c9bb69fa176bb6aed98c075be1e71285043bdce.tar.gz
cpython-3c9bb69fa176bb6aed98c075be1e71285043bdce.tar.bz2
Add missing word ("thread") to sentence about call_soon_threadsafe.
Diffstat (limited to 'Doc/library/asyncio-dev.rst')
-rw-r--r--Doc/library/asyncio-dev.rst2
1 files changed, 1 insertions, 1 deletions
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())