summaryrefslogtreecommitdiff
path: root/cmd
diff options
context:
space:
mode:
authorPraveen Kumar <praveen+git@kumar.in>2021-10-29 11:10:26 -0700
committerMatthew Heon <matthew.heon@pm.me>2021-11-12 11:08:25 -0500
commit0ded340e6bbc7952678d93029726ec83992e5010 (patch)
treeca0b3afcc99cfd237616de7d1462a92c09912583 /cmd
parentfa29ca7106a332ef62ccd73d474c8e7d831b1f9d (diff)
downloadpodman-0ded340e6bbc7952678d93029726ec83992e5010.tar.gz
podman-0ded340e6bbc7952678d93029726ec83992e5010.tar.bz2
podman-0ded340e6bbc7952678d93029726ec83992e5010.zip
Fix help message case for `podman version`
This is a cosmetic change. The help message for `podman version` is in title case whereas all other command help messages are not in title case. This stands out as inconsistent when looking at the output of `podman help`. Signed-off-by: Praveen Kumar <praveen+git@kumar.in>
Diffstat (limited to 'cmd')
-rw-r--r--cmd/podman/system/version.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/podman/system/version.go b/cmd/podman/system/version.go
index 4502b156c..f71af8e72 100644
--- a/cmd/podman/system/version.go
+++ b/cmd/podman/system/version.go
@@ -20,7 +20,7 @@ var (
versionCommand = &cobra.Command{
Use: "version [options]",
Args: validate.NoArgs,
- Short: "Display the Podman Version Information",
+ Short: "Display the Podman version information",
RunE: version,
ValidArgsFunction: completion.AutocompleteNone,
}