From: Rob Pike Date: Tue, 13 Oct 2009 22:55:44 +0000 (-0700) Subject: delete silly TODO X-Git-Tag: weekly.2009-11-06~328 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=76d585e5af19d99b0d25a2c6114046b8f80368a8;p=gostls13.git delete silly TODO R=rsc DELTA=1 (0 added, 1 deleted, 0 changed) OCL=35685 CL=35687 --- diff --git a/src/pkg/sort/sort.go b/src/pkg/sort/sort.go index 0aac7d3237..1e9832b408 100644 --- a/src/pkg/sort/sort.go +++ b/src/pkg/sort/sort.go @@ -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);