summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/pelletier/go-toml/query/parser.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/pelletier/go-toml/query/parser.go')
-rw-r--r--vendor/github.com/pelletier/go-toml/query/parser.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/vendor/github.com/pelletier/go-toml/query/parser.go b/vendor/github.com/pelletier/go-toml/query/parser.go
index e4f91b97e..5f69b70d4 100644
--- a/vendor/github.com/pelletier/go-toml/query/parser.go
+++ b/vendor/github.com/pelletier/go-toml/query/parser.go
@@ -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()