about summary refs log tree commit diff
diff options
context:
space:
mode:
authorSteve Klabnik <steve@steveklabnik.com>2013-04-01 18:20:30 -0700
committerSteve Klabnik <steve@steveklabnik.com>2013-04-01 18:20:30 -0700
commit948ff6056f9f4c2fe312da98456d3d6b7d1ce699 (patch)
tree5a9ffbb8a35845d547ae92e672ba1866e1f4dd05
parent1d658d9b97434a391a7e202a033080555a2bc69e (diff)
downloadrust-948ff6056f9f4c2fe312da98456d3d6b7d1ce699.tar.gz
rust-948ff6056f9f4c2fe312da98456d3d6b7d1ce699.zip
Typo fix. u8 -> i8
-rw-r--r--src/libcore/io.rs2
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
     *