diff --git a/cmd/bisync/testdata/test_check_access_filters/scenario.txt b/cmd/bisync/testdata/test_check_access_filters/scenario.txt index 46948a468..f29806ba6 100644 --- a/cmd/bisync/testdata/test_check_access_filters/scenario.txt +++ b/cmd/bisync/testdata/test_check_access_filters/scenario.txt @@ -3,8 +3,8 @@ test check-access-filters # NOTE: Include Other tests may result in listing diffs due to rclone processing order change. False fail. # # Tests are done in two phases: -# - EXCLUDE OTHER tests check that RCLONE_TEST files are only found in the explicity included directories -# - INCLUDE OTHER tesss check that RCLONE_TEST files are found in all directories not explicity excluded +# - EXCLUDE OTHER tests check that RCLONE_TEST files are only found in the explicitly included directories +# - INCLUDE OTHER tesss check that RCLONE_TEST files are found in all directories not explicitly excluded # # Each phase checks that: # - missing RCLONE_TEST files in don't care directories don't cause failures diff --git a/cmd/check/check.go b/cmd/check/check.go index 3c126e176..6337f6834 100644 --- a/cmd/check/check.go +++ b/cmd/check/check.go @@ -142,7 +142,7 @@ match. It doesn't alter the source or destination. For the [crypt](/crypt/) remote there is a dedicated command, [cryptcheck](/commands/rclone_cryptcheck/), that are able to check -the checksums of the crypted files. +the checksums of the encrypted files. If you supply the |--size-only| flag, it will only compare the sizes not the hashes as well. Use this for a quick check. diff --git a/cmd/cryptcheck/cryptcheck.go b/cmd/cryptcheck/cryptcheck.go index 481c4cece..7c01d9d59 100644 --- a/cmd/cryptcheck/cryptcheck.go +++ b/cmd/cryptcheck/cryptcheck.go @@ -22,11 +22,11 @@ func init() { var commandDefinition = &cobra.Command{ Use: "cryptcheck remote:path cryptedremote:path", - Short: `Cryptcheck checks the integrity of a crypted remote.`, + Short: `Cryptcheck checks the integrity of an encrypted remote.`, Long: ` rclone cryptcheck checks a remote against a [crypted](/crypt/) remote. This is the equivalent of running rclone [check](/commands/rclone_check/), -but able to check the checksums of the crypted remote. +but able to check the checksums of the encrypted remote. For it to work the underlying remote of the cryptedremote must support some kind of checksum. @@ -59,7 +59,7 @@ After it has run it will log the status of the encryptedremote:. }, } -// cryptCheck checks the integrity of a crypted remote +// cryptCheck checks the integrity of an encrypted remote func cryptCheck(ctx context.Context, fdst, fsrc fs.Fs) error { // Check to see fcrypt is a crypt fcrypt, ok := fdst.(*crypt.Fs) diff --git a/cmd/serve/sftp/sftp.go b/cmd/serve/sftp/sftp.go index 2a255224b..ce0c235c7 100644 --- a/cmd/serve/sftp/sftp.go +++ b/cmd/serve/sftp/sftp.go @@ -108,7 +108,7 @@ which can lead to "corrupted on transfer" errors. This is the case because the client chooses indiscriminately which server to send commands to while the servers all have different views of the state of the filing system. -The "restrict" in authorized_keys prevents SHA1SUMs and MD5SUMs from beeing +The "restrict" in authorized_keys prevents SHA1SUMs and MD5SUMs from being used. Omitting "restrict" and using ` + "`--sftp-path-override`" + ` to enable checksumming is possible but less secure and you could use the SFTP server provided by OpenSSH in this case. diff --git a/cmd/test/test.go b/cmd/test/test.go index 8888f85c6..381d5681a 100644 --- a/cmd/test/test.go +++ b/cmd/test/test.go @@ -16,7 +16,7 @@ var Command = &cobra.Command{ Short: `Run a test command`, Long: `Rclone test is used to run test commands. -Select which test comand you want with the subcommand, eg +Select which test command you want with the subcommand, eg rclone test memory remote: diff --git a/cmd/touch/touch.go b/cmd/touch/touch.go index 5dcf123e3..6b6cdcea9 100644 --- a/cmd/touch/touch.go +++ b/cmd/touch/touch.go @@ -141,7 +141,7 @@ func Touch(ctx context.Context, f fs.Fs, remote string) error { file, err := f.NewObject(ctx, remote) if err != nil { if errors.Is(err, fs.ErrorObjectNotFound) { - // Touching non-existant path, possibly creating it as new file + // Touching non-existent path, possibly creating it as new file if remote == "" { fs.Logf(f, "Not touching empty directory") return nil