From 36982d527493ab2deb3531b2f370e0be4650c986 Mon Sep 17 00:00:00 2001 From: "R.B. Boyer" Date: Wed, 5 Feb 2020 14:43:25 -0600 Subject: [PATCH] cli: fix typo in -namespace help text (#7225) --- command/flags/http.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/command/flags/http.go b/command/flags/http.go index 104a4177a8..ae2a331133 100644 --- a/command/flags/http.go +++ b/command/flags/http.go @@ -77,7 +77,7 @@ func (f *HTTPFlags) ServerFlags() *flag.FlagSet { func (f *HTTPFlags) NamespaceFlags() *flag.FlagSet { fs := flag.NewFlagSet("", flag.ContinueOnError) fs.Var(&f.namespace, "namespace", - "Specifies the namespace to query. If not provided, the namespace will be inferred +"+ + "Specifies the namespace to query. If not provided, the namespace will be inferred "+ "from the request's ACL token, or will default to the `default` namespace. "+ "Namespaces is a Consul Enterprise feature.") return fs