Skip to content

Commit

Permalink
Remove extra 's' in "expression"
Browse files Browse the repository at this point in the history
  • Loading branch information
clinty committed Jun 24, 2018
1 parent c2b33e8 commit 5989c84
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion parser.go
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ func (p *Parser) Parse(expression string) (ASTNode, error) {
}
if p.current() != tEOF {
return ASTNode{}, p.syntaxError(fmt.Sprintf(
"Unexpected token at the end of the expresssion: %s", p.current()))
"Unexpected token at the end of the expression: %s", p.current()))
}
return parsed, nil
}
Expand Down

0 comments on commit 5989c84

Please sign in to comment.