From bf02eb0cc76d8fa27aec81ecdcc6ba59e176ee6f Mon Sep 17 00:00:00 2001 From: Matthias Radestock Date: Tue, 16 May 2017 09:15:42 +0100 Subject: [PATCH] fix typos in usage info --- prog/main.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/prog/main.go b/prog/main.go index cd25e2531..b32cc4041 100644 --- a/prog/main.go +++ b/prog/main.go @@ -263,9 +263,9 @@ func main() { // They are also here so they are included in usage, and the probe uses them to decide if to // publish to localhost. noApp := flag.Bool("no-app", false, "Don't run the app.") - probeOnly := flag.Bool("probe-only", false, "Only run the app.") + probeOnly := flag.Bool("probe-only", false, "Only run the probe.") flag.Bool("no-probe", false, "Don't run the probe.") - flag.Bool("app-only", false, "Only run the probe.") + flag.Bool("app-only", false, "Only run the app.") // Probe flags flag.StringVar(&flags.probe.token, serviceTokenFlag, "", "Token to use to authenticate with cloud.weave.works")