diff options
author | Nalin Dahyabhai <nalin@redhat.com> | 2021-11-04 16:06:24 -0400 |
---|---|---|
committer | Matthew Heon <matthew.heon@pm.me> | 2021-11-12 11:08:25 -0500 |
commit | b1ac02dcbbfd2a3f47955bf739fe03f83375a6c1 (patch) | |
tree | aaea4a1ea620912127031f0b4099994c01c4795f /cmd/podman/common/create.go | |
parent | 718de67f33982e6cc59009b02b4b96c19842b921 (diff) | |
download | podman-b1ac02dcbbfd2a3f47955bf739fe03f83375a6c1.tar.gz podman-b1ac02dcbbfd2a3f47955bf739fe03f83375a6c1.tar.bz2 podman-b1ac02dcbbfd2a3f47955bf739fe03f83375a6c1.zip |
tweak a couple of flag descriptions in help output
Descriptions of flags don't need to start with whitespace of their own.
Signed-off-by: Nalin Dahyabhai <nalin@redhat.com>
Diffstat (limited to 'cmd/podman/common/create.go')
-rw-r--r-- | cmd/podman/common/create.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/podman/common/create.go b/cmd/podman/common/create.go index b3dfc4967..643f6728a 100644 --- a/cmd/podman/common/create.go +++ b/cmd/podman/common/create.go @@ -426,7 +426,7 @@ func DefineCreateFlags(cmd *cobra.Command, cf *entities.ContainerCreateOptions, createFlags.StringVar( &cf.Variant, variantFlagName, "", - "Use _VARIANT_ instead of the running architecture variant for choosing images", + "Use `VARIANT` instead of the running architecture variant for choosing images", ) _ = cmd.RegisterFlagCompletionFunc(variantFlagName, completion.AutocompleteNone) |