Skip to content

Commit 267934b

Browse files
committed
fmt
1 parent b1088c6 commit 267934b

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

parser/src/lexer.rs

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

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

0 commit comments

Comments
 (0)