aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrey Mirtchovski <mirtchovski@gmail.com>2010-02-02 23:01:21 -0800
committerRuss Cox <rsc@golang.org>2010-02-02 23:01:21 -0800
commit4a9a0056c1684b47f7986b0224b308e45e94af6e (patch)
tree12d91403d6f39335da6e2884b2e7c665c588e37c
parent8b8c103b2bb74881dc728477b91ce3b0d28a06d9 (diff)
downloadgo-4a9a0056c1684b47f7986b0224b308e45e94af6e.tar.gz
go-4a9a0056c1684b47f7986b0224b308e45e94af6e.zip
sort: fix comment typo
R=rsc CC=golang-dev https://golang.org/cl/198084
-rw-r--r--src/pkg/sort/sort.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pkg/sort/sort.go b/src/pkg/sort/sort.go
index b2b4b98f7d..c5b848414a 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.