diff options
| author | Steve Klabnik <steve@steveklabnik.com> | 2013-04-01 18:20:30 -0700 |
|---|---|---|
| committer | Steve Klabnik <steve@steveklabnik.com> | 2013-04-01 18:20:30 -0700 |
| commit | 948ff6056f9f4c2fe312da98456d3d6b7d1ce699 (patch) | |
| tree | 5a9ffbb8a35845d547ae92e672ba1866e1f4dd05 | |
| parent | 1d658d9b97434a391a7e202a033080555a2bc69e (diff) | |
| download | rust-948ff6056f9f4c2fe312da98456d3d6b7d1ce699.tar.gz rust-948ff6056f9f4c2fe312da98456d3d6b7d1ce699.zip | |
Typo fix. u8 -> i8
| -rw-r--r-- | src/libcore/io.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcore/io.rs b/src/libcore/io.rs index 1a15a9f5d80..b3dfe8d46af 100644 --- a/src/libcore/io.rs +++ b/src/libcore/io.rs @@ -496,7 +496,7 @@ pub trait ReaderUtil { /** * Read an i8. * - * `u8`s are 1 byte. + * `i8`s are 1 byte. * * # Examples * |
