Skip to content

Commit

Permalink
fix clippy warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
TommYDeeee committed Jan 23, 2024
1 parent 967b615 commit 4af9f97
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/parser/grammar/expressions/atom.rs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ pub(super) fn atom_expr(p: &mut Parser) -> Option<CompletedMarker> {
return Some(m);
}

let _done = match p.current() {
match p.current() {
_ => {
p.err_recover("expected expression", EXPR_RECOVERY_SET);
return None;
Expand Down

0 comments on commit 4af9f97

Please sign in to comment.