Skip to content

Commit 3cba41e

Browse files
committed
fix: resolve clippy needless return
1 parent 9a42c3f commit 3cba41e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/parser/mod.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9304,10 +9304,10 @@ impl<'a> Parser<'a> {
93049304
}),
93059305
}))
93069306
} else {
9307-
return self.expected_ref(
9307+
self.expected_ref(
93089308
"{RENAME TO | { RENAME | ADD } VALUE}",
93099309
self.peek_token_ref(),
9310-
);
9310+
)
93119311
}
93129312
}
93139313

0 commit comments

Comments
 (0)