Skip to content

Commit 7077aef

Browse files
committed
auto merge of #8877 : bouk/rust/master, r=sanxiyn
Ran into a missing space in the stdlib source
2 parents 8e3efc1 + a2ffcea commit 7077aef

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/libstd/io.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -619,7 +619,7 @@ pub trait ReaderUtil {
619619

620620
impl<T:Reader> ReaderUtil for T {
621621

622-
fn read_bytes(&self,len: uint) -> ~[u8] {
622+
fn read_bytes(&self, len: uint) -> ~[u8] {
623623
let mut bytes = vec::with_capacity(len);
624624
unsafe { vec::raw::set_len(&mut bytes, len); }
625625

0 commit comments

Comments
 (0)