Update version in readme

This commit is contained in:
David Tolnay 2017-01-23 16:46:42 -08:00
parent 8427ff610b
commit 02252428e6
No known key found for this signature in database
GPG Key ID: F9BA143B95FF6D82
1 changed files with 2 additions and 2 deletions

View File

@ -30,7 +30,7 @@ itoa::write(&mut buf, 128u64).unwrap();
The function signature is: The function signature is:
```rust ```rust
fn write<W: io::Write, V: itoa::Integer>(writer: &mut W, value: V) -> io::Result<()> fn write<W: io::Write + ?Sized, V: itoa::Integer>(writer: &mut W, value: V) -> io::Result<()>
``` ```
where `itoa::Integer` is implemented for `i8`, `u8`, `i16`, `u16`, `i32`, `u32`, where `itoa::Integer` is implemented for `i8`, `u8`, `i16`, `u16`, `i32`, `u32`,
@ -43,7 +43,7 @@ following in `Cargo.toml`:
```toml ```toml
[dependencies] [dependencies]
itoa = "0.1" itoa = "0.2"
``` ```
## License ## License