Stop mentioning obsolete integer suffixes

`us` and `is` were replaced with `usize` and `isize` some time ago.
This commit is contained in:
Andrzej Janik 2015-04-23 16:39:18 +02:00
parent 1114fcd945
commit 5efdbecdf9

View file

@ -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