summaryrefslogtreecommitdiffstats
path: root/src/matcher.go
diff options
context:
space:
mode:
authorJunegunn Choi <junegunn.c@gmail.com>2016-08-14 17:51:34 +0900
committerJunegunn Choi <junegunn.c@gmail.com>2016-08-14 17:51:34 +0900
commitd4b63381029b477d064d4c3ff38f4efb89ae950d (patch)
treec15c9374b6af10778b096455b56b88a874b7ed64 /src/matcher.go
parent8df7d962e60bce44adda674ef8f99a2a76a4a6e7 (diff)
Lint
Diffstat (limited to 'src/matcher.go')
-rw-r--r--src/matcher.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/matcher.go b/src/matcher.go
index d320697a..d2a7b389 100644
--- a/src/matcher.go
+++ b/src/matcher.go
@@ -200,7 +200,7 @@ func (m *Matcher) scan(request MatchRequest) (*Merger, bool) {
}
partialResults := make([][]*Item, numSlices)
- for _, _ = range slices {
+ for _ = range slices {
partialResult := <-resultChan
partialResults[partialResult.index] = partialResult.matches
}