From 43321e96a966b84a18ab77d1f17ea65d4e5cf94f Mon Sep 17 00:00:00 2001 From: Andrew Lavery Date: Tue, 27 Nov 2018 21:49:05 -0800 Subject: [PATCH] fix typos identified by 'misspell' tool --- config.go | 2 +- main.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/config.go b/config.go index 54882c2..21d35c8 100644 --- a/config.go +++ b/config.go @@ -16,7 +16,7 @@ func getConfig() *config.Config { flag.BoolVar(&showVersion, "version", showVersion, "Output version information") ignore := false - flag.BoolVar(&ignore, "ignore-config", ignore, "Ignore user config files and use defauls") + flag.BoolVar(&ignore, "ignore-config", ignore, "Ignore user config files and use defaults") if ignore { return &config.DefaultConfig } diff --git a/main.go b/main.go index 2a5e0d1..ab850fe 100644 --- a/main.go +++ b/main.go @@ -40,7 +40,7 @@ func main() { shellStr = conf.Shell } - os.Setenv("TERM", "xterm-256color") // contraversial! easier than installing terminfo everywhere, but obviously going to be slightly different to xterm functionality, so we'll see... + os.Setenv("TERM", "xterm-256color") // controversial! easier than installing terminfo everywhere, but obviously going to be slightly different to xterm functionality, so we'll see... os.Setenv("COLORTERM", "truecolor") shell := exec.Command(shellStr)