From 32c2d48a6fb411e34d4df049f12bfa6061039306 Mon Sep 17 00:00:00 2001 From: Bhanu Valasa Date: Thu, 19 May 2016 16:30:29 -0400 Subject: [PATCH] libcontainer: Fix Running Comment Signed-off-by: Bhanu Valasa --- libcontainer/container.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libcontainer/container.go b/libcontainer/container.go index afc1b3ee..8d282a1e 100644 --- a/libcontainer/container.go +++ b/libcontainer/container.go @@ -18,7 +18,7 @@ const ( // Created is the status that denotes the container exists but has not been run yet Created Status = iota - // Created is the status that denotes the container exists and is running. + // Running is the status that denotes the container exists and is running. Running // Pausing is the status that denotes the container exists, it is in the process of being paused.