1
0
mirror of https://github.com/rclone/rclone.git synced 2026-01-06 02:23:24 +00:00

fix spelling

This commit is contained in:
Fabian Möller
2019-04-30 14:06:24 +02:00
parent 7963320a29
commit 48c09608ea
31 changed files with 41 additions and 41 deletions

View File

@@ -206,7 +206,7 @@ func equal(src fs.ObjectInfo, dst fs.Object, sizeOnly, checkSum bool) bool {
// Used to remove a failed copy
//
// Returns whether the file was succesfully removed or not
// Returns whether the file was successfully removed or not
func removeFailedCopy(dst fs.Object) bool {
if dst == nil {
return false
@@ -226,7 +226,7 @@ type overrideRemoteObject struct {
remote string
}
// Remote returns the overriden remote name
// Remote returns the overridden remote name
func (o *overrideRemoteObject) Remote() string {
return o.remote
}