Skip to content

Commit 432b9df

Browse files
committed
cargo fmt
1 parent 88028dd commit 432b9df

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

parser/src/lexer.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -687,7 +687,7 @@ where
687687

688688
match self.chr0 {
689689
Some('0'..='9') => return Some(self.lex_number()),
690-
Some('_') | Some('a'..='z') | Some('A'..='Z') => { return Some(self.lex_identifier()) }
690+
Some('_') | Some('a'..='z') | Some('A'..='Z') => return Some(self.lex_identifier()),
691691
Some('#') => {
692692
self.lex_comment();
693693
continue;

0 commit comments

Comments
 (0)