diff options
| author | Manish Goregaokar <manishsmail@gmail.com> | 2015-04-24 09:44:18 +0530 |
|---|---|---|
| committer | Manish Goregaokar <manishsmail@gmail.com> | 2015-04-24 19:21:14 +0530 |
| commit | 0c1df5dadfbc3d852cf531cfb8fac0d26c1df3f8 (patch) | |
| tree | 333c4d5982cd76ea835b3c367d420a6b19c086d9 | |
| parent | af6ec32842dd27f66a5dd18bb1c07dd85fe4fced (diff) | |
| parent | 5efdbecdf9472bb7ca2c8ae7a89b8c4966d567ce (diff) | |
| download | rust-0c1df5dadfbc3d852cf531cfb8fac0d26c1df3f8.tar.gz rust-0c1df5dadfbc3d852cf531cfb8fac0d26c1df3f8.zip | |
Rollup merge of #24721 - vosen:patch-1, r=steveklabnik
`us` and `is` were replaced with `usize` and `isize` some time ago. Other than that, 3.5.2.1.5 is correct.
| -rw-r--r-- | src/doc/reference.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/reference.md b/src/doc/reference.md index a61d635af7d..555bc693233 100644 --- a/src/doc/reference.md +++ b/src/doc/reference.md @@ -271,7 +271,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 |
