Skip to content

Commit 93c0780

Browse files
authored
Fix type typo in tokens.md.
Closes rust-lang#192.
1 parent 1b130c6 commit 93c0780

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)