aboutsummaryrefslogtreecommitdiff
path: root/src/pkg/container
diff options
context:
space:
mode:
authorRobert Hencke <robert.hencke@gmail.com>2011-05-18 13:14:56 -0400
committerRuss Cox <rsc@golang.org>2011-05-18 13:14:56 -0400
commitc8727c81bb21293147bb4edc19a0b895d88eba3b (patch)
tree8ca1f84df192e3efd04f31c0d9ddcbb17a339e1e /src/pkg/container
parentb2563580088dcec7896b0d858c969ba7f25c16ae (diff)
downloadgo-c8727c81bb21293147bb4edc19a0b895d88eba3b.tar.xz
pkg: spelling tweaks, A-H
R=ality, bradfitz, rsc, dsymonds, adg, qyzhai, dchest CC=golang-dev https://golang.org/cl/4536063
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 f2b8a750a4..5b68827df0 100644
--- a/src/pkg/container/heap/heap.go
+++ b/src/pkg/container/heap/heap.go
@@ -22,7 +22,7 @@ type Interface interface {
}
-// A heaper must be initialized before any of the heap operations
+// A heap must be initialized before any of the heap operations
// can be used. 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().