[Python-checkins] Fix missing ", " in the documentation of Executor Objects (GH-30404)

Mariatta webhook-mailer at python.org
Tue Jan 4 13:48:13 EST 2022


https://github.com/python/cpython/commit/f404e26d749c85eef7b5be836375260855050ee3
commit: f404e26d749c85eef7b5be836375260855050ee3
branch: main
author: Philipp Claßen <philipp.classen at posteo.de>
committer: Mariatta <Mariatta at users.noreply.github.com>
date: 2022-01-04T10:48:04-08:00
summary:

Fix missing "," in the documentation of Executor Objects (GH-30404)

files:
M Doc/library/concurrent.futures.rst

diff --git a/Doc/library/concurrent.futures.rst b/Doc/library/concurrent.futures.rst
index 0432fcdfa23e1..959280833997e 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. ::
 



More information about the Python-checkins mailing list