Skip to content

Commit a302940

Browse files
jbcrailalexcrichton
authored andcommitted
---
yaml --- r: 110545 b: refs/heads/master c: 22b6325 h: refs/heads/master i: 110543: e09888b v: v3
1 parent a73b409 commit a302940

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
refs/heads/master: 6ac34926a4f704ecab09167f07b94aa269df5b98
2+
refs/heads/master: 22b632560f9dc1d11121a8c129181b87ea80d7d7
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
44
refs/heads/snap-stage3: e263ef1df7b892ed29e53313565eb05ab75e52f4
55
refs/heads/try: 597a645456b55e1c886ce15d23a192abdf4d55cf

trunk/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
}

trunk/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)