diff options
author | Philipp Claßen <philipp.classen@posteo.de> | 2022-01-04 18:48:04 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-04 18:48:04 (GMT) |
commit | f404e26d749c85eef7b5be836375260855050ee3 (patch) | |
tree | 20982d0a984f312ca3b1a3e5e57a0ef9452e46cc | |
parent | 7537f6008704b20e2d04a7ef1c0cfa34121cc5eb (diff) | |
download | cpython-f404e26d749c85eef7b5be836375260855050ee3.zip cpython-f404e26d749c85eef7b5be836375260855050ee3.tar.gz cpython-f404e26d749c85eef7b5be836375260855050ee3.tar.bz2 |
Fix missing "," in the documentation of Executor Objects (GH-30404)
-rw-r--r-- | Doc/library/concurrent.futures.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/concurrent.futures.rst b/Doc/library/concurrent.futures.rst index 0432fcd..9592808 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. :: |