aboutsummaryrefslogtreecommitdiff
path: root/libgo/go/sort/search.go
diff options
context:
space:
mode:
Diffstat (limited to 'libgo/go/sort/search.go')
-rw-r--r--libgo/go/sort/search.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/libgo/go/sort/search.go b/libgo/go/sort/search.go
index 8a2c1c33b14..de8178ff484 100644
--- a/libgo/go/sort/search.go
+++ b/libgo/go/sort/search.go
@@ -13,7 +13,7 @@ package sort
// and then true for the (possibly empty) remainder; Search returns
// the first true index. If there is no such index, Search returns n.
// (Note that the "not found" return value is not -1 as in, for instance,
-// strings.Index).
+// strings.Index.)
// Search calls f(i) only for i in the range [0, n).
//
// A common use of Search is to find the index i for a value x in