From: Andrey Mirtchovski Date: Wed, 3 Feb 2010 07:01:21 +0000 (-0800) Subject: sort: fix comment typo X-Git-Tag: weekly.2010-02-04~20 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=4a9a0056c1684b47f7986b0224b308e45e94af6e;p=gostls13.git sort: fix comment typo R=rsc CC=golang-dev https://golang.org/cl/198084 --- 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.