From: Terry Reedy Date: Tue, 22 Feb 2011 16:24:07 +0000 (+0000) Subject: Fix typo reported by 'Paddy' on python-list. X-Git-Tag: v3.2.1b1~392 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ba9ad6021aadbd8bff8bcacb1853faf92fa58235;p=python Fix typo reported by 'Paddy' on python-list. --- diff --git a/Doc/whatsnew/3.2.rst b/Doc/whatsnew/3.2.rst index 1baa9e1470..6156c6c0b8 100644 --- a/Doc/whatsnew/3.2.rst +++ b/Doc/whatsnew/3.2.rst @@ -270,7 +270,7 @@ launch of four parallel threads for copying files:: 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') .. seealso::