diff --git a/backend/qingstor/qingstor.go b/backend/qingstor/qingstor.go index bb3627403..1438cf616 100644 --- a/backend/qingstor/qingstor.go +++ b/backend/qingstor/qingstor.go @@ -69,7 +69,7 @@ func init() { }}, }, { Name: "connection_retries", - Help: "Number of connnection retries.", + Help: "Number of connection retries.", Default: 3, Advanced: true, }}, diff --git a/cmd/mountlib/mount.go b/cmd/mountlib/mount.go index 93f73b6d4..c7c50f0e6 100644 --- a/cmd/mountlib/mount.go +++ b/cmd/mountlib/mount.go @@ -147,7 +147,7 @@ systems are a long way from 100% reliable. The rclone sync/copy commands cope with this with lots of retries. However rclone ` + commandName + ` can't use retries in the same way without making local copies of the uploads. Look at the [file caching](#file-caching) -for solutions to make ` + commandName + ` mount more reliable. +for solutions to make ` + commandName + ` more reliable. ### Attribute caching diff --git a/fs/config/configflags/configflags.go b/fs/config/configflags/configflags.go index 39ab61d1f..110755c8e 100644 --- a/fs/config/configflags/configflags.go +++ b/fs/config/configflags/configflags.go @@ -53,9 +53,9 @@ func AddFlags(flagSet *pflag.FlagSet) { flags.BoolVarP(flagSet, &dumpBodies, "dump-bodies", "", false, "Dump HTTP headers and bodies - may contain sensitive info") flags.BoolVarP(flagSet, &fs.Config.InsecureSkipVerify, "no-check-certificate", "", fs.Config.InsecureSkipVerify, "Do not verify the server SSL certificate. Insecure.") flags.BoolVarP(flagSet, &fs.Config.AskPassword, "ask-password", "", fs.Config.AskPassword, "Allow prompt for password for encrypted configuration.") - flags.BoolVarP(flagSet, &deleteBefore, "delete-before", "", false, "When synchronizing, delete files on destination before transfering") + flags.BoolVarP(flagSet, &deleteBefore, "delete-before", "", false, "When synchronizing, delete files on destination before transferring") flags.BoolVarP(flagSet, &deleteDuring, "delete-during", "", false, "When synchronizing, delete files during transfer") - flags.BoolVarP(flagSet, &deleteAfter, "delete-after", "", false, "When synchronizing, delete files on destination after transfering (default)") + flags.BoolVarP(flagSet, &deleteAfter, "delete-after", "", false, "When synchronizing, delete files on destination after transferring (default)") flags.IntVar64P(flagSet, &fs.Config.MaxDelete, "max-delete", "", -1, "When synchronizing, limit the number of deletes") flags.BoolVarP(flagSet, &fs.Config.TrackRenames, "track-renames", "", fs.Config.TrackRenames, "When synchronizing, track file renames and do a server side move if possible") flags.IntVarP(flagSet, &fs.Config.LowLevelRetries, "low-level-retries", "", fs.Config.LowLevelRetries, "Number of low level retries to do.")