summaryrefslogtreecommitdiff
path: root/cmd/podman/pod_stats.go
diff options
context:
space:
mode:
authorDaniel J Walsh <dwalsh@redhat.com>2019-02-04 13:44:16 -0500
committerDaniel J Walsh <dwalsh@redhat.com>2019-02-05 10:42:04 -0800
commit0830bb9035a9ee35810e358a32b8011da2dc1be6 (patch)
tree26141b977d0b869a0fb957743b65a23f4afb13d0 /cmd/podman/pod_stats.go
parent74d984e0560b2cb421287395b025687e3aabe118 (diff)
downloadpodman-0830bb9035a9ee35810e358a32b8011da2dc1be6.tar.gz
podman-0830bb9035a9ee35810e358a32b8011da2dc1be6.tar.bz2
podman-0830bb9035a9ee35810e358a32b8011da2dc1be6.zip
Capatilize all usage and descriptions
We have no consistancy in out option usages and descritions on whether or not the first letter should be capatalized. This patch forces them all to be capatilized. Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
Diffstat (limited to 'cmd/podman/pod_stats.go')
-rw-r--r--cmd/podman/pod_stats.go10
1 files changed, 5 insertions, 5 deletions
diff --git a/cmd/podman/pod_stats.go b/cmd/podman/pod_stats.go
index 2e29445b4..0f0e215e6 100644
--- a/cmd/podman/pod_stats.go
+++ b/cmd/podman/pod_stats.go
@@ -19,22 +19,22 @@ var (
podStatsFlags = []cli.Flag{
cli.BoolFlag{
Name: "all, a",
- Usage: "show stats for all pods. Only running pods are shown by default.",
+ Usage: "Show stats for all pods. Only running pods are shown by default.",
},
cli.BoolFlag{
Name: "no-stream",
- Usage: "disable streaming stats and only pull the first result, default setting is false",
+ Usage: "Disable streaming stats and only pull the first result, default setting is false",
},
cli.BoolFlag{
Name: "no-reset",
- Usage: "disable resetting the screen between intervals",
+ Usage: "Disable resetting the screen between intervals",
},
cli.StringFlag{
Name: "format",
- Usage: "pretty-print container statistics to JSON or using a Go template",
+ Usage: "Pretty-print container statistics to JSON or using a Go template",
}, LatestPodFlag,
}
- podStatsDescription = "display a live stream of resource usage statistics for the containers in or more pods"
+ podStatsDescription = "Display a live stream of resource usage statistics for the containers in or more pods"
podStatsCommand = cli.Command{
Name: "stats",
Usage: "Display percentage of CPU, memory, network I/O, block I/O and PIDs for containers in one or more pods",