diff options
author | Giuseppe Scrivano <gscrivan@redhat.com> | 2019-05-10 09:56:22 +0200 |
---|---|---|
committer | Giuseppe Scrivano <gscrivan@redhat.com> | 2019-05-13 10:48:20 +0200 |
commit | 0cb11dec4439ee1d0db729d30b6e75b4404fb674 (patch) | |
tree | 007b5dbd62a79d901e928ad6a581e245a2d772ac | |
parent | d2571c7fd49d22e822a6f3b3796488218c9f9e46 (diff) | |
download | podman-0cb11dec4439ee1d0db729d30b6e75b4404fb674.tar.gz podman-0cb11dec4439ee1d0db729d30b6e75b4404fb674.tar.bz2 podman-0cb11dec4439ee1d0db729d30b6e75b4404fb674.zip |
podman: fix events help string
make it uppercase as all the other ones.
Signed-off-by: Giuseppe Scrivano <gscrivan@redhat.com>
-rw-r--r-- | cmd/podman/events.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/podman/events.go b/cmd/podman/events.go index 15f5e9571..88c1010e3 100644 --- a/cmd/podman/events.go +++ b/cmd/podman/events.go @@ -13,7 +13,7 @@ var ( _eventsCommand = &cobra.Command{ Use: "events", Args: noSubArgs, - Short: "show podman events", + Short: "Show podman events", Long: eventsDescription, RunE: func(cmd *cobra.Command, args []string) error { eventsCommand.InputArgs = args |