From 8acb8fb7809ccbd1d0fba4c4d6661282f4645cef Mon Sep 17 00:00:00 2001 From: Rob Pike Date: Tue, 13 Oct 2009 13:05:16 -0700 Subject: 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 --- src/pkg/container/vector/stringvector.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/pkg/container/vector/stringvector.go') diff --git a/src/pkg/container/vector/stringvector.go b/src/pkg/container/vector/stringvector.go index 4949d06b75..4e54ea85c4 100644 --- a/src/pkg/container/vector/stringvector.go +++ b/src/pkg/container/vector/stringvector.go @@ -92,7 +92,7 @@ func (p *StringVector) AppendVector(x *StringVector) { } -// SortInterface support +// sort.Interface support // Less returns a boolean denoting whether the i'th element is less than the j'th element. func (p *StringVector) Less(i, j int) bool { return p.At(i) < p.At(j); -- cgit v1.3