aboutsummaryrefslogtreecommitdiff
path: root/src/pkg/container
diff options
context:
space:
mode:
authorNigel Tao <nigeltao@golang.org>2013-02-04 15:30:41 +1100
committerNigel Tao <nigeltao@golang.org>2013-02-04 15:30:41 +1100
commit4e285bac6e6bafb443e0c3aef94c424bc96967e8 (patch)
tree55e528c76dd311fb17dd64610d99f502995305a7 /src/pkg/container
parentf41ffc2bf4a5a29bdff0b11a787e2536859ea61d (diff)
downloadgo-4e285bac6e6bafb443e0c3aef94c424bc96967e8.tar.xz
container/heap: fix package doc comment about ordering.
R=gri, rsc CC=golang-dev https://golang.org/cl/7280044
Diffstat (limited to 'src/pkg/container')
-rw-r--r--src/pkg/container/heap/heap.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pkg/container/heap/heap.go b/src/pkg/container/heap/heap.go
index d17a30aec3..7fd41f785f 100644
--- a/src/pkg/container/heap/heap.go
+++ b/src/pkg/container/heap/heap.go
@@ -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