Fix typo in readme

This commit is contained in:
David Tolnay 2016-06-27 02:43:31 -07:00
parent 01cb34a686
commit 940b50f216
No known key found for this signature in database
GPG Key ID: F9BA143B95FF6D82
1 changed files with 2 additions and 2 deletions

View File

@ -20,8 +20,8 @@ but avoids the performance penalty of going through
```rust ```rust
extern crate itoa; extern crate itoa;
let buf = Vec::new(); let mut buf = Vec::new();
itoa::write(buf, 128u64).unwrap(); itoa::write(&mut buf, 128u64).unwrap();
``` ```
The function signature is: The function signature is: