]> Cypherpunks repositories - gostls13.git/commitdiff
delete silly TODO
authorRob Pike <r@golang.org>
Tue, 13 Oct 2009 22:55:44 +0000 (15:55 -0700)
committerRob Pike <r@golang.org>
Tue, 13 Oct 2009 22:55:44 +0000 (15:55 -0700)
R=rsc
DELTA=1  (0 added, 1 deleted, 0 changed)
OCL=35685
CL=35687

src/pkg/sort/sort.go

index 0aac7d32374c91097bdc205dedf9647f689a0383..1e9832b408d0a12638ac9df6f8d44501f49de0d2 100644 (file)
@@ -14,7 +14,6 @@ type Interface interface {
        Len() int;
        // Less returns whether the element with index i is should sort
        // before the element with index j.
-       // TODO(r): should this method be renamed Before?
        Less(i, j int) bool;
        // Swap swaps the elements with indexes i and j.
        Swap(i, j int);