From: Nigel Tao Date: Mon, 4 Feb 2013 04:30:41 +0000 (+1100) Subject: container/heap: fix package doc comment about ordering. X-Git-Tag: go1.1rc2~1154 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=4e285bac6e6bafb443e0c3aef94c424bc96967e8;p=gostls13.git container/heap: fix package doc comment about ordering. R=gri, rsc CC=golang-dev https://golang.org/cl/7280044 --- 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