Skip to content

Commit

Permalink
Correct query/parser spelling mistake (#182)
Browse files Browse the repository at this point in the history
  • Loading branch information
EdwardBetts authored and pelletier committed Sep 4, 2017
1 parent 9c1b4e3 commit 1d6b12b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion query/parser.go
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,7 @@ func (p *queryParser) parseFilterExpr() queryParserStateFn {
}
tok = p.getToken()
if tok.typ != tokenKey && tok.typ != tokenString {
return p.parseError(tok, "expected key or string for filter funciton name")
return p.parseError(tok, "expected key or string for filter function name")
}
name := tok.val
tok = p.getToken()
Expand Down

0 comments on commit 1d6b12b

Please sign in to comment.