We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d5f0e25 commit 21ebb03Copy full SHA for 21ebb03
parser/src/lexer.rs
@@ -687,9 +687,7 @@ where
687
688
match self.chr0 {
689
Some('0'..='9') => return Some(self.lex_number()),
690
- Some('_') | Some('a'..='z') | Some('A'..='Z') => {
691
- return Some(self.lex_identifier())
692
- }
+ Some('_') | Some('a'..='z') | Some('A'..='Z') => return Some(self.lex_identifier()),
693
Some('#') => {
694
self.lex_comment();
695
continue;
rustfmt.toml
@@ -1 +1 @@
1
-version = "One"
+edition = "2018"
0 commit comments