From 76d585e5af19d99b0d25a2c6114046b8f80368a8 Mon Sep 17 00:00:00 2001 From: Rob Pike Date: Tue, 13 Oct 2009 15:55:44 -0700 Subject: [PATCH] delete silly TODO R=rsc DELTA=1 (0 added, 1 deleted, 0 changed) OCL=35685 CL=35687 --- src/pkg/sort/sort.go | 1 - 1 file changed, 1 deletion(-) diff --git a/src/pkg/sort/sort.go b/src/pkg/sort/sort.go index 0aac7d32374..1e9832b408d 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);