diff options
| author | Joseph Crail <jbcrail@gmail.com> | 2014-04-06 22:51:59 -0400 |
|---|---|---|
| committer | Alex Crichton <alex@alexcrichton.com> | 2014-04-08 00:03:12 -0700 |
| commit | 22b632560f9dc1d11121a8c129181b87ea80d7d7 (patch) | |
| tree | e7b2d7ff87189f6a41576bae2036f1d88a9cb577 /src/libstd | |
| parent | 6ac34926a4f704ecab09167f07b94aa269df5b98 (diff) | |
| download | rust-22b632560f9dc1d11121a8c129181b87ea80d7d7.tar.gz rust-22b632560f9dc1d11121a8c129181b87ea80d7d7.zip | |
Fix spelling errors in comments.
Diffstat (limited to 'src/libstd')
| -rw-r--r-- | src/libstd/io/mod.rs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/libstd/io/mod.rs b/src/libstd/io/mod.rs index 97519adbc3f..f384000896c 100644 --- a/src/libstd/io/mod.rs +++ b/src/libstd/io/mod.rs @@ -632,28 +632,28 @@ pub trait Reader { /// Reads a little-endian unsigned integer. /// - /// The number of bytes returned is system-dependant. + /// The number of bytes returned is system-dependent. fn read_le_uint(&mut self) -> IoResult<uint> { self.read_le_uint_n(uint::BYTES).map(|i| i as uint) } /// Reads a little-endian integer. /// - /// The number of bytes returned is system-dependant. + /// The number of bytes returned is system-dependent. fn read_le_int(&mut self) -> IoResult<int> { self.read_le_int_n(int::BYTES).map(|i| i as int) } /// Reads a big-endian unsigned integer. /// - /// The number of bytes returned is system-dependant. + /// The number of bytes returned is system-dependent. fn read_be_uint(&mut self) -> IoResult<uint> { self.read_be_uint_n(uint::BYTES).map(|i| i as uint) } /// Reads a big-endian integer. /// - /// The number of bytes returned is system-dependant. + /// The number of bytes returned is system-dependent. fn read_be_int(&mut self) -> IoResult<int> { self.read_be_int_n(int::BYTES).map(|i| i as int) } |
