From 07d190a61c60cff2f20186e700abca46f18d35ac Mon Sep 17 00:00:00 2001 From: guoxiuyan Date: Thu, 29 Jan 2015 10:15:56 +0800 Subject: [PATCH] Fix a minor typo Signed-off-by: Guo Xiuyan --- graph/push.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/graph/push.go b/graph/push.go index b8fb09882e..0606c4603f 100644 --- a/graph/push.go +++ b/graph/push.go @@ -150,7 +150,7 @@ func (s *TagStore) pushImageToEndpoint(endpoint string, out io.Writer, remoteNam // wait for all the images that require pushes to be collected into a consumable map. shouldPush := <-pushes // finish by pushing any images and tags to the endpoint. The order that the images are pushed - // is very important that is why we are still itterating over the ordered list of imageIDs. + // is very important that is why we are still iterating over the ordered list of imageIDs. for _, id := range imageIDs { if _, push := shouldPush[id]; push { if _, err := s.pushImage(r, out, id, endpoint, repo.Tokens, sf); err != nil {