cpython: Issue #20650: Tweak some awkward wording.
http://hg.python.org/cpython/rev/2dd7b9618596 changeset: 89427:2dd7b9618596 user: Brett Cannon <brett@python.org> date: Fri Feb 28 10:06:18 2014 -0500 summary: Issue #20650: Tweak some awkward wording. files: 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 --- a/Doc/library/asyncio-eventloop.rst +++ b/Doc/library/asyncio-eventloop.rst @@ -589,8 +589,8 @@ 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>`. -- Repository URL: http://hg.python.org/cpython
participants (1)
-
brett.cannon