From e36fc90b3f4d900e9e40983f1ce9510f15c35431 Mon Sep 17 00:00:00 2001 From: Lei Xue Date: Thu, 3 Dec 2015 07:44:49 +0800 Subject: [PATCH] comment fix for function ContainerInfoRequest --- info/v1/container.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/info/v1/container.go b/info/v1/container.go index d8d27fd1..1a3449b9 100644 --- a/info/v1/container.go +++ b/info/v1/container.go @@ -87,7 +87,7 @@ func (self ContainerReferenceSlice) Len() int { return len(self) } func (self ContainerReferenceSlice) Swap(i, j int) { self[i], self[j] = self[j], self[i] } func (self ContainerReferenceSlice) Less(i, j int) bool { return self[i].Name < self[j].Name } -// ContainerInfoQuery is used when users check a container info from the REST api. +// ContainerInfoRequest is used when users check a container info from the REST API. // It specifies how much data users want to get about a container type ContainerInfoRequest struct { // Max number of stats to return. Specify -1 for all stats currently available.