diff options
author | Andrey Mirtchovski <mirtchovski@gmail.com> | 2010-02-02 23:01:21 -0800 |
---|---|---|
committer | Andrey Mirtchovski <mirtchovski@gmail.com> | 2010-02-02 23:01:21 -0800 |
commit | 23dfbdd8dd9f43e71057fec57884e05dd54d60b5 (patch) | |
tree | 4783015e5b473a3b6fb0279d04a245d380113ce4 | |
parent | 1989a2bebe4e9908fce31d93076bcb291873e87f (diff) | |
download | golang-23dfbdd8dd9f43e71057fec57884e05dd54d60b5.tar.gz |
sort: fix comment typo
R=rsc
CC=golang-dev
http://codereview.appspot.com/198084
Committer: Russ Cox <rsc@golang.org>
-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. |