diff options
| author | Bouke van der Bijl <boukevanderbijl@gmail.com> | 2013-08-30 12:53:05 +0200 |
|---|---|---|
| committer | Bouke van der Bijl <boukevanderbijl@gmail.com> | 2013-08-30 12:53:05 +0200 |
| commit | a2ffceaedd5d80a83bafd3e930541c1d32424604 (patch) | |
| tree | 3e0a3128d9cfb782e2df590c43d93e6cbc5ac107 /src/libstd | |
| parent | f10e50a4beecbf6afa51870190458d34f216fe54 (diff) | |
| download | rust-a2ffceaedd5d80a83bafd3e930541c1d32424604.tar.gz rust-a2ffceaedd5d80a83bafd3e930541c1d32424604.zip | |
Add missing space
Diffstat (limited to 'src/libstd')
| -rw-r--r-- | src/libstd/io.rs | 2 |
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); } |
