Stop mentioning obsolete integer suffixes
`us` and `is` were replaced with `usize` and `isize` some time ago.
This commit is contained in:
parent
1114fcd945
commit
5efdbecdf9
1 changed files with 1 additions and 1 deletions
|
|
@ -268,7 +268,7 @@ cases mentioned in [Number literals](#number-literals) below.
|
|||
##### Suffixes
|
||||
| Integer | Floating-point |
|
||||
|---------|----------------|
|
||||
| `u8`, `i8`, `u16`, `i16`, `u32`, `i32`, `u64`, `i64`, `is` (`isize`), `us` (`usize`) | `f32`, `f64` |
|
||||
| `u8`, `i8`, `u16`, `i16`, `u32`, `i32`, `u64`, `i64`, `isize`, `usize` | `f32`, `f64` |
|
||||
|
||||
#### Character and string literals
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue