From 39d72eedc49130b76d02202c17ba19e9d79bce1f Mon Sep 17 00:00:00 2001 From: Jiayu Liu Date: Sat, 24 Feb 2018 10:34:41 +0800 Subject: [PATCH] Update config.go fix typo --- tools/config/config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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()