Skip to content

Fix spelling errors in comments. #13369

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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