]> Cypherpunks.ru repositories - gostls13.git/commitdiff
container/heap: fix comments style
authorbontequero <bontequero@gmail.com>
Sat, 7 Apr 2018 17:43:45 +0000 (20:43 +0300)
committerBrad Fitzpatrick <bradfitz@golang.org>
Wed, 11 Apr 2018 20:11:09 +0000 (20:11 +0000)
Fixes golint warning about comment on exported function.

Change-Id: Ia6a910e2dca2cd31d8de64419e36add6191e804d
Reviewed-on: https://go-review.googlesource.com/105495
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
src/container/heap/heap.go

index b2c64276c82db5eac755b9af8a0cf0f19472e762..67b5efcac7e3771635270011d91366069d7f37e8 100644 (file)
@@ -18,7 +18,9 @@ package heap
 
 import "sort"
 
-// Any type that implements heap.Interface may be used as a
+// The Interface type describes the requirements
+// for a type using the routines in this package.
+// Any type that implements it may be used as a
 // min-heap with the following invariants (established after
 // Init has been called or if the data is empty or sorted):
 //
@@ -33,11 +35,10 @@ type Interface interface {
        Pop() interface{}   // remove and return element Len() - 1.
 }
 
-// A heap must be initialized before any of the heap operations
-// can be used. Init is idempotent with respect to the heap invariants
+// Init establishes the heap invariants required by the other routines in this package.
+// Init is idempotent with respect to the heap invariants
 // and may be called whenever the heap invariants may have been invalidated.
 // Its complexity is O(n) where n = h.Len().
-//
 func Init(h Interface) {
        // heapify
        n := h.Len()