diff options
author | Terry Jan Reedy <tjreedy@udel.edu> | 2014-07-24 06:33:14 (GMT) |
---|---|---|
committer | Terry Jan Reedy <tjreedy@udel.edu> | 2014-07-24 06:33:14 (GMT) |
commit | c935a9530c8583e17c5c5ceeec2097c96016e1d9 (patch) | |
tree | 803880d83a62e6d764bb547848feb8d47ce490cc | |
parent | 1cc9520327f4b197112f0c5b4aa10d5513d4bb9b (diff) | |
download | cpython-c935a9530c8583e17c5c5ceeec2097c96016e1d9.zip cpython-c935a9530c8583e17c5c5ceeec2097c96016e1d9.tar.gz cpython-c935a9530c8583e17c5c5ceeec2097c96016e1d9.tar.bz2 |
Englich grammar nit.
-rw-r--r-- | Doc/library/asyncio-task.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/asyncio-task.rst b/Doc/library/asyncio-task.rst index 316a694..db688f5 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. |