diff options
| author | Nigel Tao <nigeltao@golang.org> | 2011-04-20 09:57:05 +1000 |
|---|---|---|
| committer | Nigel Tao <nigeltao@golang.org> | 2011-04-20 09:57:05 +1000 |
| commit | 6a186d38d1c7e98487378991dba3085acbdb05c2 (patch) | |
| tree | d230d0e8b73f1682f4be8b8fab37ea96e81405be /src/pkg/container | |
| parent | 0f7acf111452fe7168221885fea778312ad4826c (diff) | |
| download | go-6a186d38d1c7e98487378991dba3085acbdb05c2.tar.xz | |
src/pkg: make package doc comments consistently start with "Package foo".
R=rsc
CC=golang-dev
https://golang.org/cl/4442064
Diffstat (limited to 'src/pkg/container')
| -rw-r--r-- | src/pkg/container/heap/heap.go | 2 | ||||
| -rw-r--r-- | src/pkg/container/list/list.go | 2 | ||||
| -rw-r--r-- | src/pkg/container/ring/ring.go | 2 | ||||
| -rw-r--r-- | src/pkg/container/vector/defs.go | 4 |
4 files changed, 5 insertions, 5 deletions
diff --git a/src/pkg/container/heap/heap.go b/src/pkg/container/heap/heap.go index 4435a57c4e..f2b8a750a4 100644 --- a/src/pkg/container/heap/heap.go +++ b/src/pkg/container/heap/heap.go @@ -2,7 +2,7 @@ // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. -// This package provides heap operations for any type that implements +// Package heap provides heap operations for any type that implements // heap.Interface. // package heap diff --git a/src/pkg/container/list/list.go b/src/pkg/container/list/list.go index c1ebcddaa7..a3fd4b39f3 100644 --- a/src/pkg/container/list/list.go +++ b/src/pkg/container/list/list.go @@ -2,7 +2,7 @@ // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. -// The list package implements a doubly linked list. +// Package list implements a doubly linked list. // // To iterate over a list (where l is a *List): // for e := l.Front(); e != nil; e = e.Next() { diff --git a/src/pkg/container/ring/ring.go b/src/pkg/container/ring/ring.go index 5925164e9d..cc870ce936 100644 --- a/src/pkg/container/ring/ring.go +++ b/src/pkg/container/ring/ring.go @@ -2,7 +2,7 @@ // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. -// The ring package implements operations on circular lists. +// Package ring implements operations on circular lists. package ring // A Ring is an element of a circular list, or ring. diff --git a/src/pkg/container/vector/defs.go b/src/pkg/container/vector/defs.go index a2febb6dee..bfb5481fb8 100644 --- a/src/pkg/container/vector/defs.go +++ b/src/pkg/container/vector/defs.go @@ -2,8 +2,8 @@ // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. -// The vector package implements containers for managing sequences -// of elements. Vectors grow and shrink dynamically as necessary. +// Package vector implements containers for managing sequences of elements. +// Vectors grow and shrink dynamically as necessary. package vector |
