diff options
| -rw-r--r-- | src/pkg/sort/sort.go | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/src/pkg/sort/sort.go b/src/pkg/sort/sort.go index b2b4b98f7..c5b848414 100644 --- a/src/pkg/sort/sort.go +++ b/src/pkg/sort/sort.go @@ -12,7 +12,7 @@ package sort  type Interface interface {  	// Len is the number of elements in the collection.  	Len() int -	// Less returns whether the element with index i is should sort +	// Less returns whether the element with index i should sort  	// before the element with index j.  	Less(i, j int) bool  	// Swap swaps the elements with indexes i and j. | 
