Skip to content

Commit 50e1bca

Browse files
authored
Merge pull request rust-lang#193 from alercah/patch-2
Fix type typo in tokens.md.
2 parents 1b130c6 + 93c0780 commit 50e1bca

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/tokens.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -370,7 +370,7 @@ let a: u64 = 123; // type u64
370370
0o70_i16; // type i16
371371

372372
0b1111_1111_1001_0000; // type i32
373-
0b1111_1111_1001_0000i32; // type i64
373+
0b1111_1111_1001_0000i64; // type i64
374374
0b________1; // type i32
375375

376376
0usize; // type usize

0 commit comments

Comments
 (0)