From 23dfbdd8dd9f43e71057fec57884e05dd54d60b5 Mon Sep 17 00:00:00 2001 From: Andrey Mirtchovski Date: Tue, 2 Feb 2010 23:01:21 -0800 Subject: sort: fix comment typo R=rsc CC=golang-dev http://codereview.appspot.com/198084 Committer: Russ Cox --- src/pkg/sort/sort.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') 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. -- cgit v1.2.3