]> granicus.if.org Git - python/commitdiff
asyncio doc: fix gather() doc
authorVictor Stinner <victor.stinner@gmail.com>
Sun, 9 Feb 2014 00:35:24 +0000 (01:35 +0100)
committerVictor Stinner <victor.stinner@gmail.com>
Sun, 9 Feb 2014 00:35:24 +0000 (01:35 +0100)
Doc/library/asyncio-task.rst

index cfad0bc22bb7e13a80974ab6c74b49e3122cb4e5..d638b2064e2dbf7306bb6a62777dc1df833b6bad 100644 (file)
@@ -415,7 +415,7 @@ Task functions
    All futures must share the same event loop.  If all the tasks are done
    successfully, the returned future's result is the list of results (in the
    order of the original sequence, not necessarily the order of results
-   arrival).  If *result_exception* is True, exceptions in the tasks are
+   arrival).  If *return_exceptions* is True, exceptions in the tasks are
    treated the same as successful results, and gathered in the result list;
    otherwise, the first raised exception will be immediately propagated to the
    returned future.