File tree 2 files changed +5
-5
lines changed
2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -632,28 +632,28 @@ pub trait Reader {
632
632
633
633
/// Reads a little-endian unsigned integer.
634
634
///
635
- /// The number of bytes returned is system-dependant .
635
+ /// The number of bytes returned is system-dependent .
636
636
fn read_le_uint ( & mut self ) -> IoResult < uint > {
637
637
self . read_le_uint_n ( uint:: BYTES ) . map ( |i| i as uint )
638
638
}
639
639
640
640
/// Reads a little-endian integer.
641
641
///
642
- /// The number of bytes returned is system-dependant .
642
+ /// The number of bytes returned is system-dependent .
643
643
fn read_le_int ( & mut self ) -> IoResult < int > {
644
644
self . read_le_int_n ( int:: BYTES ) . map ( |i| i as int )
645
645
}
646
646
647
647
/// Reads a big-endian unsigned integer.
648
648
///
649
- /// The number of bytes returned is system-dependant .
649
+ /// The number of bytes returned is system-dependent .
650
650
fn read_be_uint ( & mut self ) -> IoResult < uint > {
651
651
self . read_be_uint_n ( uint:: BYTES ) . map ( |i| i as uint )
652
652
}
653
653
654
654
/// Reads a big-endian integer.
655
655
///
656
- /// The number of bytes returned is system-dependant .
656
+ /// The number of bytes returned is system-dependent .
657
657
fn read_be_int ( & mut self ) -> IoResult < int > {
658
658
self . read_be_int_n ( int:: BYTES ) . map ( |i| i as int )
659
659
}
Original file line number Diff line number Diff line change 16
16
17
17
DEPDIR =depends
18
18
19
- # "Machine-dependant " options
19
+ # "Machine-dependent " options
20
20
# MFLAGS=-fPIC
21
21
22
22
CFLAGS =-c -g -O3 -fPIC -Wall -Werror -Wsign-compare -Isrc -Ihtml
You can’t perform that action at this time.
0 commit comments