Skip to content

Commit

Permalink
[NFC] google#466 minor comment fix (google#475)
Browse files Browse the repository at this point in the history
  • Loading branch information
zchcai authored Jun 22, 2020
1 parent 7805093 commit bb9076c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions common/filestore_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ def get_impl():

def cp(source, destination, recursive=False, parallel=False, expect_zero=True): # pylint: disable=invalid-name
"""Copies |source| to |destination|. If |expect_zero| is True then it can
raise subprocess.CalledProcessError. |parallel| is only effective for
gsutil."""
raise subprocess.CalledProcessError. |parallel| is only used by the gsutil
implementation."""
return get_impl().cp(source,
destination,
recursive=recursive,
Expand Down Expand Up @@ -71,7 +71,7 @@ def rsync( # pylint: disable=too-many-arguments
options=None,
parallel=False):
"""Syncs |source| and |destination| folders. |gsutil_options| and |parallel|
are only used in gsutil."""
are only used by the gsutil implementation."""
return get_impl().rsync(source,
destination,
delete,
Expand Down

0 comments on commit bb9076c

Please sign in to comment.