Skip to content

Commit 22b6325

Browse files
jbcrailalexcrichton
authored andcommitted
Fix spelling errors in comments.
1 parent 6ac3492 commit 22b6325

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

src/libstd/io/mod.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -632,28 +632,28 @@ pub trait Reader {
632632

633633
/// Reads a little-endian unsigned integer.
634634
///
635-
/// The number of bytes returned is system-dependant.
635+
/// The number of bytes returned is system-dependent.
636636
fn read_le_uint(&mut self) -> IoResult<uint> {
637637
self.read_le_uint_n(uint::BYTES).map(|i| i as uint)
638638
}
639639

640640
/// Reads a little-endian integer.
641641
///
642-
/// The number of bytes returned is system-dependant.
642+
/// The number of bytes returned is system-dependent.
643643
fn read_le_int(&mut self) -> IoResult<int> {
644644
self.read_le_int_n(int::BYTES).map(|i| i as int)
645645
}
646646

647647
/// Reads a big-endian unsigned integer.
648648
///
649-
/// The number of bytes returned is system-dependant.
649+
/// The number of bytes returned is system-dependent.
650650
fn read_be_uint(&mut self) -> IoResult<uint> {
651651
self.read_be_uint_n(uint::BYTES).map(|i| i as uint)
652652
}
653653

654654
/// Reads a big-endian integer.
655655
///
656-
/// The number of bytes returned is system-dependant.
656+
/// The number of bytes returned is system-dependent.
657657
fn read_be_int(&mut self) -> IoResult<int> {
658658
self.read_be_int_n(int::BYTES).map(|i| i as int)
659659
}

src/rt/sundown/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
DEPDIR=depends
1818

19-
# "Machine-dependant" options
19+
# "Machine-dependent" options
2020
#MFLAGS=-fPIC
2121

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

0 commit comments

Comments
 (0)