From: Philipp Claßen Date: Tue, 4 Jan 2022 18:48:04 +0000 (+0100) Subject: Fix missing "," in the documentation of Executor Objects (GH-30404) X-Git-Tag: v3.11.0a4~84 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=f404e26d749c85eef7b5be836375260855050ee3;p=thirdparty%2FPython%2Fcpython.git Fix missing "," in the documentation of Executor Objects (GH-30404) --- diff --git a/Doc/library/concurrent.futures.rst b/Doc/library/concurrent.futures.rst index 0432fcdfa23e..959280833997 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. ::