forked from TrueCloudLab/rclone
fs: fix typo in error message
This commit is contained in:
parent
2c4aadb588
commit
9eb17e4ade
1 changed files with 1 additions and 1 deletions
2
fs/fs.go
2
fs/fs.go
|
@ -61,7 +61,7 @@ var (
|
||||||
ErrorListAborted = errors.New("list aborted")
|
ErrorListAborted = errors.New("list aborted")
|
||||||
ErrorListBucketRequired = errors.New("bucket or container name is needed in remote")
|
ErrorListBucketRequired = errors.New("bucket or container name is needed in remote")
|
||||||
ErrorIsFile = errors.New("is a file not a directory")
|
ErrorIsFile = errors.New("is a file not a directory")
|
||||||
ErrorNotAFile = errors.New("is a not a regular file")
|
ErrorNotAFile = errors.New("is not a regular file")
|
||||||
ErrorNotDeleting = errors.New("not deleting files as there were IO errors")
|
ErrorNotDeleting = errors.New("not deleting files as there were IO errors")
|
||||||
ErrorNotDeletingDirs = errors.New("not deleting directories as there were IO errors")
|
ErrorNotDeletingDirs = errors.New("not deleting directories as there were IO errors")
|
||||||
ErrorOverlapping = errors.New("can't sync or move files on overlapping remotes")
|
ErrorOverlapping = errors.New("can't sync or move files on overlapping remotes")
|
||||||
|
|
Loading…
Add table
Reference in a new issue