Correct query/parser spelling mistake (#182)
This commit is contained in:
committed by
Thomas Pelletier
parent
9c1b4e331f
commit
1d6b12b7cb
+1
-1
@@ -253,7 +253,7 @@ func (p *queryParser) parseFilterExpr() queryParserStateFn {
|
|||||||
}
|
}
|
||||||
tok = p.getToken()
|
tok = p.getToken()
|
||||||
if tok.typ != tokenKey && tok.typ != tokenString {
|
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
|
name := tok.val
|
||||||
tok = p.getToken()
|
tok = p.getToken()
|
||||||
|
|||||||
Reference in New Issue
Block a user