Skip to content

Commit c94b20c

Browse files
authored
docstring typos
1 parent fc74df6 commit c94b20c

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

fs/utils.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,9 @@ def copyfile(src_fs, src_path, dst_fs, dst_path, overwrite=True, chunk_size=64*1
3636
Otherwise file will be copied a chunk at a time.
3737
3838
:param src_fs: Source filesystem object
39-
:param src_path: -- Source path
39+
:param src_path: Source path
4040
:param dst_fs: Destination filesystem object
41-
:param dst_path: Destination filesystem object
41+
:param dst_path: Destination path
4242
:param chunk_size: Size of chunks to move if system copyfile is not available (default 64K)
4343
4444
"""
@@ -81,9 +81,9 @@ def copyfile_non_atomic(src_fs, src_path, dst_fs, dst_path, overwrite=True, chun
8181
"""A non atomic version of copyfile (will not block other threads using src_fs or dst_fst)
8282
8383
:param src_fs: Source filesystem object
84-
:param src_path: -- Source path
84+
:param src_path: Source path
8585
:param dst_fs: Destination filesystem object
86-
:param dst_path: Destination filesystem object
86+
:param dst_path: Destination path
8787
:param chunk_size: Size of chunks to move if system copyfile is not available (default 64K)
8888
8989
"""
@@ -116,7 +116,7 @@ def movefile(src_fs, src_path, dst_fs, dst_path, overwrite=True, chunk_size=64*1
116116
:param src_fs: Source filesystem object
117117
:param src_path: Source path
118118
:param dst_fs: Destination filesystem object
119-
:param dst_path: Destination filesystem object
119+
:param dst_path: Destination path
120120
:param chunk_size: Size of chunks to move if system copyfile is not available (default 64K)
121121
122122
"""
@@ -164,7 +164,7 @@ def movefile_non_atomic(src_fs, src_path, dst_fs, dst_path, overwrite=True, chun
164164
:param src_fs: Source filesystem object
165165
:param src_path: Source path
166166
:param dst_fs: Destination filesystem object
167-
:param dst_path: Destination filesystem object
167+
:param dst_path: Destination path
168168
:param chunk_size: Size of chunks to move if system copyfile is not available (default 64K)
169169
170170
"""

0 commit comments

Comments
 (0)