]> git.lizzy.rs Git - rust.git/blobdiff - compiler/rustc_lexer/src/lib.rs
Rollup merge of #106216 - ChrisDenton:ps-go-faster, r=jyn514
[rust.git] / compiler / rustc_lexer / src / lib.rs
index 50d6d5b9bab91a0bc08807c708ad7f02858d2842..4c65fca29b89721542148dcfadf447bee9f7048b 100644 (file)
@@ -851,7 +851,7 @@ fn eat_literal_suffix(&mut self) {
     }
 
     // Eats the identifier. Note: succeeds on `_`, which isn't a valid
-    // identifer.
+    // identifier.
     fn eat_identifier(&mut self) {
         if !is_id_start(self.first()) {
             return;