diff options
author | Rob Pike <r@golang.org> | 2009-10-13 13:05:16 -0700 |
---|---|---|
committer | Rob Pike <r@golang.org> | 2009-10-13 13:05:16 -0700 |
commit | 00eee8bd56594f7993a150770ebc6ab478db5b76 (patch) | |
tree | d9221abc51e7c2e7fcc6487c2db429caca61d019 /src/pkg/go/scanner/errors.go | |
parent | f3ea8729fa2cd899a68d2143c56e6a5bea0ba2f5 (diff) | |
download | golang-00eee8bd56594f7993a150770ebc6ab478db5b76.tar.gz |
reduce stutter: sort.SortInterface -> sort.Interface.
ditto for heap.HeapInterface
R=gri,rsc
DELTA=31 (0 added, 1 deleted, 30 changed)
OCL=35665
CL=35673
Diffstat (limited to 'src/pkg/go/scanner/errors.go')
-rw-r--r-- | src/pkg/go/scanner/errors.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pkg/go/scanner/errors.go b/src/pkg/go/scanner/errors.go index 73429f1fa..090066701 100644 --- a/src/pkg/go/scanner/errors.go +++ b/src/pkg/go/scanner/errors.go @@ -82,7 +82,7 @@ func (e *Error) String() string { type ErrorList []*Error -// ErrorList implements the SortInterface. +// ErrorList implements the sort Interface. func (p ErrorList) Len() int { return len(p); } |