]> granicus.if.org Git - python/commitdiff
Englich grammar nit.
authorTerry Jan Reedy <tjreedy@udel.edu>
Thu, 24 Jul 2014 06:33:14 +0000 (02:33 -0400)
committerTerry Jan Reedy <tjreedy@udel.edu>
Thu, 24 Jul 2014 06:33:14 +0000 (02:33 -0400)
Doc/library/asyncio-task.rst

index 316a694ce125319467df958e67c030285003cd81..db688f53a7a07e6cd02a3e6425aebc0ba779ab31 100644 (file)
@@ -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.