diff options
author | Hynek Schlawack <hs@ox.cx> | 2012-06-27 17:53:22 +0200 |
---|---|---|
committer | Hynek Schlawack <hs@ox.cx> | 2012-06-27 17:53:22 +0200 |
commit | 8d2be37010a3f5c6b8b7744639b3f62cfbd9c630 (patch) | |
tree | 36db286409238fda04891f592c0177652ed466e8 /Doc/library/shutil.rst | |
parent | c8ccbea4c641ca7b28dad4662c399d100c901c64 (diff) | |
download | cpython-8d2be37010a3f5c6b8b7744639b3f62cfbd9c630.tar.gz |
Fix typo in shutil doc
Diffstat (limited to 'Doc/library/shutil.rst')
-rw-r--r-- | Doc/library/shutil.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/shutil.rst b/Doc/library/shutil.rst index 1c27cc9042..c3947bbc79 100644 --- a/Doc/library/shutil.rst +++ b/Doc/library/shutil.rst @@ -91,7 +91,7 @@ Directory and files operations .. versionchanged:: 3.3 Added *symlinks* argument. -.. function:: copy(src, dst, symlinks=False)) +.. function:: copy(src, dst, symlinks=False) Copy the file *src* to the file or directory *dst* and return the file's destination. If *dst* is a directory, a |