summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunegunn Choi <junegunn.c@gmail.com>2016-09-11 12:13:40 +0900
committerGitHub <noreply@github.com>2016-09-11 12:13:40 +0900
commitcf6f4d74c4bf7fcbc7807a89f50974da719ae2b0 (patch)
treedf561c1eb8cfb918b9a72a93e5db91dbf2937ff3
parent1c81a58127c5f625d287b0807894ccade7b8d34d (diff)
parentf44d40f6b4591538c4eb15414f2024eaaa65a793 (diff)
downloadfzf-cf6f4d74c4bf7fcbc7807a89f50974da719ae2b0.tar.gz
Merge pull request #657 from ishanray/patch-1
Fix typo in comment
-rw-r--r--src/algo/algo.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/algo/algo.go b/src/algo/algo.go
index 00265c60..89723964 100644
--- a/src/algo/algo.go
+++ b/src/algo/algo.go
@@ -22,7 +22,7 @@ func indexAt(index int, max int, forward bool) int {
return max - index - 1
}
-// Result conatins the results of running a match function.
+// Result contains the results of running a match function.
type Result struct {
Start int
End int