Skip to content

Commit

Permalink
Rollup merge of rust-lang#24721 - vosen:patch-1, r=steveklabnik
Browse files Browse the repository at this point in the history
`us` and `is` were replaced with `usize` and `isize` some time ago. Other than that, 3.5.2.1.5 is correct.
  • Loading branch information
Manishearth committed Apr 24, 2015
2 parents e3c35d6 + 5efdbec commit 316091a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/doc/reference.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 316091a

Please sign in to comment.