fix(Dialect): fix a typo (precendence -> precedence) (#794)

* fix(Dialect): fix a typo

* fix: fix a typo in tests
This commit is contained in:
SARDONYX 2023-01-15 19:31:49 +09:00 committed by GitHub
parent 3f874f4ab8
commit ca939413f2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -69,7 +69,7 @@ fn custom_infix_parser() -> Result<(), ParserError> {
&self,
parser: &mut Parser,
expr: &Expr,
_precendence: u8,
_precedence: u8,
) -> Option<Result<Expr, ParserError>> {
if parser.consume_token(&Token::Plus) {
Some(Ok(Expr::BinaryOp {