Browse code

Fix a minor typo

Signed-off-by: Guo Xiuyan <guoxiuyan@huawei.com>

guoxiuyan authored on 2015/01/29 11:15:56
Showing 1 changed files
... ...
@@ -150,7 +150,7 @@ func (s *TagStore) pushImageToEndpoint(endpoint string, out io.Writer, remoteNam
150 150
 	// wait for all the images that require pushes to be collected into a consumable map.
151 151
 	shouldPush := <-pushes
152 152
 	// finish by pushing any images and tags to the endpoint.  The order that the images are pushed
153
-	// is very important that is why we are still itterating over the ordered list of imageIDs.
153
+	// is very important that is why we are still iterating over the ordered list of imageIDs.
154 154
 	for _, id := range imageIDs {
155 155
 		if _, push := shouldPush[id]; push {
156 156
 			if _, err := s.pushImage(r, out, id, endpoint, repo.Tokens, sf); err != nil {