diff options
author | Praveen Kumar <praveen+git@kumar.in> | 2021-10-29 11:10:26 -0700 |
---|---|---|
committer | Praveen Kumar <praveen+git@kumar.in> | 2021-10-29 11:49:49 -0700 |
commit | e69eae6458737e73e9a9b61297f1f911f0fb6599 (patch) | |
tree | b886219e9be991f715e1898cd98d583dc26e4d5d /cmd/podman/system/version.go | |
parent | 1305902ff40989099ffe13efd32458565cbc11c6 (diff) | |
download | podman-e69eae6458737e73e9a9b61297f1f911f0fb6599.tar.gz podman-e69eae6458737e73e9a9b61297f1f911f0fb6599.tar.bz2 podman-e69eae6458737e73e9a9b61297f1f911f0fb6599.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/podman/system/version.go')
-rw-r--r-- | cmd/podman/system/version.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/podman/system/version.go b/cmd/podman/system/version.go index 3ddd19bae..3443978d6 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, } |