Skip to content

Commit 7272b60

Browse files
authored
Added u128 & i128 under integer literals
Also sorted `usize` & `isize` to match the sorting of other literals.
1 parent d5c20af commit 7272b60

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
@@ -350,7 +350,7 @@ Like any literal, an integer literal may be followed (immediately,
350350
without any spaces) by an _integer suffix_, which forcibly sets the
351351
type of the literal. The integer suffix must be the name of one of the
352352
integral types: `u8`, `i8`, `u16`, `i16`, `u32`, `i32`, `u64`, `i64`,
353-
`isize`, or `usize`.
353+
`u128`, `i128`, `usize`, or `isize`.
354354

355355
The type of an _unsuffixed_ integer literal is determined by type inference:
356356

0 commit comments

Comments
 (0)