]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Fix missing "," in the documentation of Executor Objects (GH-30404)
authorPhilipp Claßen <philipp.classen@posteo.de>
Tue, 4 Jan 2022 18:48:04 +0000 (19:48 +0100)
committerGitHub <noreply@github.com>
Tue, 4 Jan 2022 18:48:04 +0000 (10:48 -0800)
Doc/library/concurrent.futures.rst

index 0432fcdfa23e1cd2ee188581c227ae1552f781e4..959280833997e5df80ee7a02dfa342212f4fddbe 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. ::