diff options
author | Brett Cannon <brett@python.org> | 2014-02-28 15:06:18 (GMT) |
---|---|---|
committer | Brett Cannon <brett@python.org> | 2014-02-28 15:06:18 (GMT) |
commit | acc74e6c63d5f4b91b26134b1fc61aa005aa26e3 (patch) | |
tree | f9d5db4a36c9239329db1808996848dcbdf5fba4 /Doc/library | |
parent | 80875fe439a030c767588c1d35c8f85abef86505 (diff) | |
download | cpython-acc74e6c63d5f4b91b26134b1fc61aa005aa26e3.zip cpython-acc74e6c63d5f4b91b26134b1fc61aa005aa26e3.tar.gz cpython-acc74e6c63d5f4b91b26134b1fc61aa005aa26e3.tar.bz2 |
Issue #20650: Tweak some awkward wording.
Diffstat (limited to 'Doc/library')
-rw-r--r-- | Doc/library/asyncio-eventloop.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/asyncio-eventloop.rst b/Doc/library/asyncio-eventloop.rst index 9d54964..171b93b 100644 --- a/Doc/library/asyncio-eventloop.rst +++ b/Doc/library/asyncio-eventloop.rst @@ -589,8 +589,8 @@ pool of processes). By default, an event loop uses a thread pool executor Arrange for a callback to be called in the specified executor. - *executor* is a :class:`~concurrent.futures.Executor` instance, - the default executor is used if *executor* is ``None``. + The *executor* argument should be an :class:`~concurrent.futures.Executor` + instance. The default executor is used if *executor* is ``None``. This method is a :ref:`coroutine <coroutine>`. |