diff options
author | Berker Peksag <berker.peksag@gmail.com> | 2015-09-15 16:59:46 (GMT) |
---|---|---|
committer | Berker Peksag <berker.peksag@gmail.com> | 2015-09-15 16:59:46 (GMT) |
commit | 768e0c129d773c1b39d7b6553eda966fe276477b (patch) | |
tree | 5cd2b2d43551daf1c3704ea0c677d45a1cc1ef2c | |
parent | 9289e9038f825ebb1f64ae7e060093bd251324f3 (diff) | |
parent | 61ea0aadee5fdfb253ca7a54088b2ec37f53d63d (diff) | |
download | cpython-768e0c129d773c1b39d7b6553eda966fe276477b.zip cpython-768e0c129d773c1b39d7b6553eda966fe276477b.tar.gz cpython-768e0c129d773c1b39d7b6553eda966fe276477b.tar.bz2 |
Issue #25127: Fix typo in concurrent.futures.rst
Reported by Jakub Wilk.
-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 11b3916..9ac6171 100644 --- a/Doc/library/concurrent.futures.rst +++ b/Doc/library/concurrent.futures.rst @@ -84,7 +84,7 @@ Executor Objects e.submit(shutil.copy, 'src1.txt', 'dest1.txt') e.submit(shutil.copy, 'src2.txt', 'dest2.txt') e.submit(shutil.copy, 'src3.txt', 'dest3.txt') - e.submit(shutil.copy, 'src3.txt', 'dest4.txt') + e.submit(shutil.copy, 'src4.txt', 'dest4.txt') ThreadPoolExecutor |