aboutsummaryrefslogtreecommitdiff
path: root/src/pkg/index/suffixarray/suffixarray_test.go
diff options
context:
space:
mode:
authorRobert Hencke <robert.hencke@gmail.com>2011-05-30 18:02:59 +1000
committerRob Pike <r@golang.org>2011-05-30 18:02:59 +1000
commit3fbd478a8a77f9d829a0cbcd0fffdcc7dc30ec83 (patch)
treeaa399f59c7d7a0696838e8de981486302fecb777 /src/pkg/index/suffixarray/suffixarray_test.go
parent9107b530d82f5f8a7fb32442509668b22e464859 (diff)
downloadgo-3fbd478a8a77f9d829a0cbcd0fffdcc7dc30ec83.tar.xz
pkg: spelling tweaks, I-Z
also, a few miscellaneous fixes to files outside pkg R=golang-dev, dsymonds, mikioh.mikioh, r CC=golang-dev https://golang.org/cl/4517116
Diffstat (limited to 'src/pkg/index/suffixarray/suffixarray_test.go')
-rw-r--r--src/pkg/index/suffixarray/suffixarray_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pkg/index/suffixarray/suffixarray_test.go b/src/pkg/index/suffixarray/suffixarray_test.go
index e85267f17f..b1499027ad 100644
--- a/src/pkg/index/suffixarray/suffixarray_test.go
+++ b/src/pkg/index/suffixarray/suffixarray_test.go
@@ -108,7 +108,7 @@ var testCases = []testCase{
}
-// find all occurrences of s in source; report at most n occurences
+// find all occurrences of s in source; report at most n occurrences
func find(src, s string, n int) []int {
var res vector.IntVector
if s != "" && n != 0 {