aboutsummaryrefslogtreecommitdiffstats
path: root/client/go/cmd/config.go
diff options
context:
space:
mode:
authorJon Bratseth <bratseth@oath.com>2021-09-13 10:32:21 +0200
committerGitHub <noreply@github.com>2021-09-13 10:32:21 +0200
commitaa7ed17bc8f31e281d5d721c65188275e7bc79a0 (patch)
tree186cad70200325cc6d47078fdcd48ca7567e295d /client/go/cmd/config.go
parent9420cc0c5873d92fd20c9ab99bc54a23001d606a (diff)
parente327d4d16e27a359da0def089d74e99b26bf1616 (diff)
Merge pull request #19073 from vespa-engine/mpolden/fix-man-usage
Fix man usage
Diffstat (limited to 'client/go/cmd/config.go')
-rw-r--r--client/go/cmd/config.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/client/go/cmd/config.go b/client/go/cmd/config.go
index 262f5d584b4..13142c92553 100644
--- a/client/go/cmd/config.go
+++ b/client/go/cmd/config.go
@@ -44,7 +44,7 @@ var configCmd = &cobra.Command{
}
var setConfigCmd = &cobra.Command{
- Use: "set <option> <value>",
+ Use: "set option-name value",
Short: "Set a configuration option.",
Example: "$ vespa config set target cloud",
DisableAutoGenTag: true,
@@ -66,7 +66,7 @@ var setConfigCmd = &cobra.Command{
}
var getConfigCmd = &cobra.Command{
- Use: "get [<option>]",
+ Use: "get option-name",
Short: "Get a configuration option",
Example: "$ vespa config get target",
Args: cobra.MaximumNArgs(1),