diff options
author | Jakob Unterwurzacher | 2016-10-24 19:18:13 +0200 |
---|---|---|
committer | Jakob Unterwurzacher | 2016-10-24 19:18:13 +0200 |
commit | aeda9721d0150b9b77d9522bb3b4fcd17f2cbbfa (patch) | |
tree | 1cded9f7087c0d6d3d8d29fe9a1c5f0ceb3783bc /cli_args.go | |
parent | ab4de4cbcd235bf1b3466a2a5bfa4d07f0537756 (diff) |
Fix misspellings
Close https://github.com/rfjakob/gocryptfs/issues/54
Diffstat (limited to 'cli_args.go')
-rw-r--r-- | cli_args.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cli_args.go b/cli_args.go index 1c9400c..7cc4090 100644 --- a/cli_args.go +++ b/cli_args.go @@ -116,12 +116,12 @@ func parseCliOpts() (args argContainer) { "Setting this to a lower value speeds up mounting but makes the password susceptible to brute-force attacks") // Ignored otions var dummyBool bool - ignoreText := "(ignored for compatability)" + ignoreText := "(ignored for compatibility)" flagSet.BoolVar(&dummyBool, "rw", false, ignoreText) flagSet.BoolVar(&dummyBool, "nosuid", false, ignoreText) flagSet.BoolVar(&dummyBool, "nodev", false, ignoreText) var dummyString string - flagSet.StringVar(&dummyString, "o", "", "For compatability, all options can be also passed as a comma-separated list to -o.") + flagSet.StringVar(&dummyString, "o", "", "For compatibility, all options can be also passed as a comma-separated list to -o.") // Actual parsing err = flagSet.Parse(os.Args[1:]) if err == flag.ErrHelp { |