diff options
Diffstat (limited to 'src/pkg/container/list/list.go')
-rw-r--r-- | src/pkg/container/list/list.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pkg/container/list/list.go b/src/pkg/container/list/list.go index c1ebcddaa..a3fd4b39f 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() { |