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 committed Apr 7, 2014
1 parent 31e8f24 commit e6b1cc6
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
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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

4 comments on commit e6b1cc6

@bors
Copy link
Contributor

@bors bors commented on e6b1cc6 Apr 8, 2014

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

saw approval from alexcrichton
at jbcrail@e6b1cc6

@bors
Copy link
Contributor

@bors bors commented on e6b1cc6 Apr 8, 2014

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

merging jbcrail/rust/fix-spelling = e6b1cc6 into auto

@bors
Copy link
Contributor

@bors bors commented on e6b1cc6 Apr 8, 2014

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

jbcrail/rust/fix-spelling = e6b1cc6 merged ok, testing candidate = e429b537

@bors
Copy link
Contributor

@bors bors commented on e6b1cc6 Apr 8, 2014

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.