Skip to content

Commit b7125b8

Browse files
committed
clippy
1 parent bf24cee commit b7125b8

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

compiler-core/src/parse/lexer.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,7 @@ where
226226
let tok_end = self.get_pos();
227227
self.emit((tok_start, Token::PlusDot, tok_end));
228228
}
229-
Some('=') | Some('+') => {
229+
Some('=' | '+') => {
230230
let _ = self.next_char();
231231
let tok_end = self.get_pos();
232232
return Err(LexicalError {

0 commit comments

Comments
 (0)