From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Tue, 4 Jan 2022 19:15:56 +0000 (-0800) Subject: Fix missing "," in the documentation of Executor Objects (GH-30404) X-Git-Tag: v3.9.10~21 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=f902d88be3aa42e03119b15469493e5cc816b784;p=thirdparty%2FPython%2Fcpython.git Fix missing "," in the documentation of Executor Objects (GH-30404) (cherry picked from commit f404e26d749c85eef7b5be836375260855050ee3) Co-authored-by: Philipp Claßen Co-authored-by: Philipp Claßen --- diff --git a/Doc/library/concurrent.futures.rst b/Doc/library/concurrent.futures.rst index f62b5e354630..70a17a23119c 100644 --- a/Doc/library/concurrent.futures.rst +++ b/Doc/library/concurrent.futures.rst @@ -30,7 +30,7 @@ Executor Objects .. method:: submit(fn, /, *args, **kwargs) - Schedules the callable, *fn*, to be executed as ``fn(*args **kwargs)`` + Schedules the callable, *fn*, to be executed as ``fn(*args, **kwargs)`` and returns a :class:`Future` object representing the execution of the callable. ::