Skip to content

Commit bf23992

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

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -707,7 +707,7 @@ impl Cursor<'_> {
707707
(Float { base, empty_exponent }, suffix_start)
708708
}
709709
('e' | 'E', '_') => {
710-
// see above bock for similar apporach
710+
// See above block for similar approach.
711711
let non_exponent_suffix_start = self.pos_within_token();
712712
self.bump();
713713
while matches!(self.first(), '_') {

0 commit comments

Comments
 (0)