Skip to content

Commit 21ebb03

Browse files
committed
rust fmt
1 parent d5f0e25 commit 21ebb03

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

parser/src/lexer.rs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -687,9 +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') => {
691-
return Some(self.lex_identifier())
692-
}
690+
Some('_') | Some('a'..='z') | Some('A'..='Z') => return Some(self.lex_identifier()),
693691
Some('#') => {
694692
self.lex_comment();
695693
continue;

rustfmt.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
version = "One"
1+
edition = "2018"

0 commit comments

Comments
 (0)