]> Cypherpunks repositories - gostls13.git/commitdiff
container/heap: fix package doc comment about ordering.
authorNigel Tao <nigeltao@golang.org>
Mon, 4 Feb 2013 04:30:41 +0000 (15:30 +1100)
committerNigel Tao <nigeltao@golang.org>
Mon, 4 Feb 2013 04:30:41 +0000 (15:30 +1100)
R=gri, rsc
CC=golang-dev
https://golang.org/cl/7280044

src/pkg/container/heap/heap.go

index d17a30aec3b1bc252cbe5601ceac52850dcfb7f6..7fd41f785f10600592a3420102b7a80a661a0105 100644 (file)
@@ -4,7 +4,7 @@
 
 // Package heap provides heap operations for any type that implements
 // heap.Interface. A heap is a tree with the property that each node is the
-// highest-valued node in its subtree.
+// minimum-valued node in its subtree.
 //
 // A heap is a common way to implement a priority queue. To build a priority
 // queue, implement the Heap interface with the (negative) priority as the