Skip to content

Commit 3d4ac84

Browse files
authored
Merge pull request #339 from markmmm/Add-u128-and-i128-tokens
Add u128 and i128 tokens
2 parents f1002ea + 00b7534 commit 3d4ac84

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/tokens.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ evaluated (primarily) at compile time.
8181

8282
| Integer | Floating-point |
8383
|---------|----------------|
84-
| `u8`, `i8`, `u16`, `i16`, `u32`, `i32`, `u64`, `i64`, `u128`, `i128`, `isize`, `usize` | `f32`, `f64` |
84+
| `u8`, `i8`, `u16`, `i16`, `u32`, `i32`, `u64`, `i64`, `u128`, `i128`, `usize`, `isize` | `f32`, `f64` |
8585

8686
### Character and string literals
8787

@@ -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-
`u128`, `i128`, `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)