aboutsummaryrefslogtreecommitdiff
path: root/src/sort
diff options
context:
space:
mode:
authorBrad Fitzpatrick <bradfitz@golang.org>2017-06-09 20:17:51 +0000
committerBrad Fitzpatrick <bradfitz@golang.org>2017-06-09 20:29:09 +0000
commitaf2ac479fc9e4833357a3281a67cd517d2da07ad (patch)
tree4c44121377d0698d60292ada5950b23ee46260d0 /src/sort
parent467f87ce60028d87f1b552c30138ccba6412333a (diff)
downloadgo-af2ac479fc9e4833357a3281a67cd517d2da07ad.tar.gz
go-af2ac479fc9e4833357a3281a67cd517d2da07ad.zip
all: single space after period
Done with grep & interactive search & replace, to double-check replacements. Not many remained after CL 20022. Fixes #18572 Change-Id: Idbe90ba3b584f9b9661d2bbd141607daaadfa41a Reviewed-on: https://go-review.googlesource.com/45270 Reviewed-by: Joe Tsai <thebrokentoaster@gmail.com>
Diffstat (limited to 'src/sort')
-rw-r--r--src/sort/search.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sort/search.go b/src/sort/search.go
index 24cc90248c..fcff0f9491 100644
--- a/src/sort/search.go
+++ b/src/sort/search.go
@@ -24,7 +24,7 @@ package sort
//
// For instance, given a slice data sorted in ascending order,
// the call Search(len(data), func(i int) bool { return data[i] >= 23 })
-// returns the smallest index i such that data[i] >= 23. If the caller
+// returns the smallest index i such that data[i] >= 23. If the caller
// wants to find whether 23 is in the slice, it must test data[i] == 23
// separately.
//