-
Notifications
You must be signed in to change notification settings - Fork 2.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix help message case for podman version
#12141
Conversation
Nice eagle eye and fix @kprav33n ! TYVM |
Thank you! I'm working on adding a corresponding test to go with it. Or, should I add |
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 <[email protected]>
/test all |
@kprav33n: Cannot trigger testing until a trusted user reviews the PR and leaves an In response to this:
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. |
Test failure looks like a flake |
/approve |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: kprav33n, rhatdan The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
What this PR does / why we need it:
This is a cosmetic change. The help message for
podman version
is intitle 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
.This PR fixes the case for the help message for the
version
subcommand.How to verify it
Run
podman help
and look at the help string for theversion
subcommand.Before
After
Special notes for your reviewer:
Just for comparison, I double checked the help message for the
version
subcommand indocker
.