Skip to content

Commit b1088c6

Browse files
committed
fmt
1 parent b0bf93e commit b1088c6

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

parser/src/lexer.rs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -688,9 +688,7 @@ where
688688

689689
match self.chr0 {
690690
Some('0'..='9') => return Some(self.lex_number()),
691-
Some('_') | Some('a'..='z') | Some('A'..='Z') => {
692-
return Some(self.lex_identifier())
693-
}
691+
Some('_') | Some('a'..='z') | Some('A'..='Z') => { return Some(self.lex_identifier()); }
694692
Some('#') => {
695693
self.lex_comment();
696694
continue;

0 commit comments

Comments
 (0)