]> Cypherpunks repositories - gostls13.git/commitdiff
sort: fix comment typo
authorAndrey Mirtchovski <mirtchovski@gmail.com>
Wed, 3 Feb 2010 07:01:21 +0000 (23:01 -0800)
committerRuss Cox <rsc@golang.org>
Wed, 3 Feb 2010 07:01:21 +0000 (23:01 -0800)
R=rsc
CC=golang-dev
https://golang.org/cl/198084

src/pkg/sort/sort.go

index b2b4b98f7d7a698e0c83b145fa31ddfe11727fe3..c5b848414a8854f0a24fe64d1382fbac96de5c9d 100644 (file)
@@ -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.