diff --git a/tools/config/config.go b/tools/config/config.go index 49201a67..fba8f0fd 100644 --- a/tools/config/config.go +++ b/tools/config/config.go @@ -23,7 +23,7 @@ func main() { configFile := config.GetFilePath("") flag.StringVar(&inFile, "infile", configFile, "The config input file to process.") flag.StringVar(&outFile, "outfile", configFile+".out", "The config output file.") - flag.BoolVar(&encrypt, "encrypt", true, "Wether to encrypt or decrypt.") + flag.BoolVar(&encrypt, "encrypt", true, "Whether to encrypt or decrypt.") flag.StringVar(&key, "key", "", "The key to use for AES encryption.") flag.Parse()