1
0
mirror of https://github.com/golang/go synced 2024-11-18 11:55:01 -07:00

container/heap: fix package doc comment about ordering.

R=gri, rsc
CC=golang-dev
https://golang.org/cl/7280044
This commit is contained in:
Nigel Tao 2013-02-04 15:30:41 +11:00
parent f41ffc2bf4
commit 4e285bac6e

View 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