Skip to content

Commit

Permalink
Fix spelling errors in comments.
Browse files Browse the repository at this point in the history
  • Loading branch information
jbcrail authored and alexcrichton committed Apr 8, 2014
1 parent 6ac3492 commit 22b6325
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions src/libstd/io/mod.rs
Expand Up @@ -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)
}
Expand Down
2 changes: 1 addition & 1 deletion src/rt/sundown/Makefile
Expand Up @@ -16,7 +16,7 @@

DEPDIR=depends

# "Machine-dependant" options
# "Machine-dependent" options
#MFLAGS=-fPIC

CFLAGS=-c -g -O3 -fPIC -Wall -Werror -Wsign-compare -Isrc -Ihtml
Expand Down

0 comments on commit 22b6325

Please sign in to comment.