]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Fix missing "," in the documentation of Executor Objects (GH-30404)
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Tue, 4 Jan 2022 19:15:56 +0000 (11:15 -0800)
committerGitHub <noreply@github.com>
Tue, 4 Jan 2022 19:15:56 +0000 (11:15 -0800)
(cherry picked from commit f404e26d749c85eef7b5be836375260855050ee3)

Co-authored-by: Philipp Claßen <philipp.classen@posteo.de>
Co-authored-by: Philipp Claßen <philipp.classen@posteo.de>
Doc/library/concurrent.futures.rst

index f62b5e35463046d721f6a4667acc0dfd96955ca8..70a17a23119c123ea1280b515fd4ef00c74ac52c 100644 (file)
@@ -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. ::