瀏覽代碼

Merge pull request #15559 from liusdu/liusdu-type

fix a typo in graph/graph.go
Jessie Frazelle 10 年之前
父節點
當前提交
355f640d4d
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      graph/graph.go

+ 1 - 1
graph/graph.go

@@ -397,7 +397,7 @@ func (graph *Graph) walkAll(handler func(*image.Image)) {
 }
 
 // ByParent returns a lookup table of images by their parent.
-// If an image of id ID has 3 children images, then the value for key ID
+// If an image of key ID has 3 children images, then the value for key ID
 // will be a list of 3 images.
 // If an image has no children, it will not have an entry in the table.
 func (graph *Graph) ByParent() map[string][]*image.Image {