From: Brett Cannon Date: Fri, 28 Feb 2014 15:06:18 +0000 (-0500) Subject: Issue #20650: Tweak some awkward wording. X-Git-Tag: v3.4.1rc1~233^2~173 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=acc74e6c63d5f4b91b26134b1fc61aa005aa26e3;p=python Issue #20650: Tweak some awkward wording. --- diff --git a/Doc/library/asyncio-eventloop.rst b/Doc/library/asyncio-eventloop.rst index 9d549646ea..171b93bbc7 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 `.