summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorValentin Rothberg <rothberg@redhat.com>2020-01-15 17:04:12 +0100
committerValentin Rothberg <rothberg@redhat.com>2020-01-15 17:08:22 +0100
commit69bd57f518cbc7c97808a663d76066d0d247ac0f (patch)
tree314750d94289a78f1cc58472815e48f1cb225cbe
parenta65068aff8d0cd9fdb8993c20e609364eb1213af (diff)
downloadpodman-69bd57f518cbc7c97808a663d76066d0d247ac0f.tar.gz
podman-69bd57f518cbc7c97808a663d76066d0d247ac0f.tar.bz2
podman-69bd57f518cbc7c97808a663d76066d0d247ac0f.zip
api: stats: fix typo
Signed-off-by: Valentin Rothberg <rothberg@redhat.com>
-rw-r--r--pkg/api/handlers/generic/containers_stats.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/api/handlers/generic/containers_stats.go b/pkg/api/handlers/generic/containers_stats.go
index 26c8efa15..e33d37606 100644
--- a/pkg/api/handlers/generic/containers_stats.go
+++ b/pkg/api/handlers/generic/containers_stats.go
@@ -43,7 +43,7 @@ func StatsContainer(w http.ResponseWriter, r *http.Request) {
return
}
- // If the container isn't returning, then let's not bother and return
+ // If the container isn't running, then let's not bother and return
// immediately.
state, err := ctnr.State()
if err != nil {