Skip to content

Commit e2caf03

Browse files
Update compiler/rustc_lexer/src/lib.rs
Co-authored-by: Vadim Petrochenkov <[email protected]>
1 parent 0abf0e9 commit e2caf03

File tree

1 file changed

+1
-1
lines changed
  • compiler/rustc_lexer/src

1 file changed

+1
-1
lines changed

compiler/rustc_lexer/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -711,7 +711,7 @@ impl Cursor<'_> {
711711
}
712712
}
713713
('e' | 'E', '0'..='9' | '+' | '-') => {
714-
// // Definitely an exponent (which still can be empty).
714+
// Definitely an exponent (which still can be empty).
715715
self.bump();
716716
let empty_exponent = !self.eat_float_exponent();
717717
(Float { base, empty_exponent }, None)

0 commit comments

Comments
 (0)