From: Terry Jan Reedy Date: Thu, 24 Jul 2014 06:33:14 +0000 (-0400) Subject: Englich grammar nit. X-Git-Tag: v3.5.0a1~1221^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c935a9530c8583e17c5c5ceeec2097c96016e1d9;p=python Englich grammar nit. --- diff --git a/Doc/library/asyncio-task.rst b/Doc/library/asyncio-task.rst index 316a694ce1..db688f53a7 100644 --- a/Doc/library/asyncio-task.rst +++ b/Doc/library/asyncio-task.rst @@ -261,7 +261,7 @@ Example combining a :class:`Future` and a :ref:`coroutine function print(future.result()) loop.close() -The coroutine function is responsible of the computation (which takes 1 second) +The coroutine function is responsible for the computation (which takes 1 second) and it stores the result into the future. The :meth:`~BaseEventLoop.run_until_complete` method waits for the completion of the future.