aboutsummaryrefslogtreecommitdiff
path: root/src/pkg/container/vector/intvector.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/pkg/container/vector/intvector.go')
-rw-r--r--src/pkg/container/vector/intvector.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pkg/container/vector/intvector.go b/src/pkg/container/vector/intvector.go
index 0ae25b9822..9db2529580 100644
--- a/src/pkg/container/vector/intvector.go
+++ b/src/pkg/container/vector/intvector.go
@@ -93,7 +93,7 @@ func (p *IntVector) AppendVector(x *IntVector) {
}
-// SortInterface support
+// sort.Interface support
// Less returns a boolean denoting whether the i'th element is less than the j'th element.
func (p *IntVector) Less(i, j int) bool {
return p.At(i) < p.At(j);