From 948ff6056f9f4c2fe312da98456d3d6b7d1ce699 Mon Sep 17 00:00:00 2001 From: Steve Klabnik Date: Mon, 1 Apr 2013 18:20:30 -0700 Subject: [PATCH] Typo fix. u8 -> i8 --- src/libcore/io.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 *