From 44506785cb47825f860bba4a0bfcf0aae94af37a Mon Sep 17 00:00:00 2001 From: Brett Kochendorfer Date: Tue, 29 Sep 2015 15:11:51 -0500 Subject: [PATCH] Fix small typo --- settings.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/settings.go b/settings.go index 60bfe50..d572125 100644 --- a/settings.go +++ b/settings.go @@ -65,7 +65,7 @@ func init() { flag.Usage = usage flag.BoolVar(&Settings.verbose, "verbose", false, "Turn on more verbose output") - flag.BoolVar(&Settings.debug, "debug", false, "Turn on debug output, shows all itercepted traffic. Works only when with `verbose` flag") + flag.BoolVar(&Settings.debug, "debug", false, "Turn on debug output, shows all intercepted traffic. Works only when with `verbose` flag") flag.BoolVar(&Settings.stats, "stats", false, "Turn on queue stats output") flag.BoolVar(&Settings.splitOutput, "split-output", false, "By default each output gets same traffic. If set to `true` it splits traffic equally among all outputs.")