about summary refs log tree commit diff
path: root/src/libstd
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2013-08-30 09:45:39 -0700
committerbors <bors@rust-lang.org>2013-08-30 09:45:39 -0700
commit7077aefb10df0b85e482163047c68baecdae3c05 (patch)
tree4bde6ed4219afb61a0166f9166e7bc89086d2553 /src/libstd
parent8e3efc112f8eb61716c5e8c3fea8f2ef03d88498 (diff)
parenta2ffceaedd5d80a83bafd3e930541c1d32424604 (diff)
downloadrust-7077aefb10df0b85e482163047c68baecdae3c05.tar.gz
rust-7077aefb10df0b85e482163047c68baecdae3c05.zip
auto merge of #8877 : bouk/rust/master, r=sanxiyn
Ran into a missing space in the stdlib source
Diffstat (limited to 'src/libstd')
-rw-r--r--src/libstd/io.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/io.rs b/src/libstd/io.rs
index e3f88033bd0..25b94e1e45d 100644
--- a/src/libstd/io.rs
+++ b/src/libstd/io.rs
@@ -619,7 +619,7 @@ pub trait ReaderUtil {
 
 impl<T:Reader> ReaderUtil for T {
 
-    fn read_bytes(&self,len: uint) -> ~[u8] {
+    fn read_bytes(&self, len: uint) -> ~[u8] {
         let mut bytes = vec::with_capacity(len);
         unsafe { vec::raw::set_len(&mut bytes, len); }