File tree 3 files changed +3
-3
lines changed
3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -79,7 +79,7 @@ macro_rules! dbghelp {
79
79
static mut DBGHELP : Dbghelp = Dbghelp {
80
80
// Initially we haven't loaded the DLL
81
81
dll: 0 as * mut _,
82
- // Initiall all functions are set to zero to say they need to be
82
+ // Initially all functions are set to zero to say they need to be
83
83
// dynamically loaded.
84
84
$( $name: 0 , ) *
85
85
} ;
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ const PT_NOTE: u32 = 4;
25
25
26
26
// Now we have to replicate, bit for bit, the structure of the dl_phdr_info
27
27
// type used by fuchsia's current dynamic linker. Chromium also has this ABI
28
- // boundary as well as crashpad. Eventully we'd like to move these cases to
28
+ // boundary as well as crashpad. Eventually we'd like to move these cases to
29
29
// use elf-search but we'd need to provide that in the SDK and that has not
30
30
// yet been done. Thus we (and they) are stuck having to use this method
31
31
// which incurs a tight coupling with the fuchsia libc.
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ use core::ptr;
6
6
use core:: slice;
7
7
8
8
pub struct Mmap {
9
- // keep the file alive to prevent it from ebeing deleted which would cause
9
+ // keep the file alive to prevent it from being deleted which would cause
10
10
// us to read bad data.
11
11
_file : File ,
12
12
ptr : * mut c_void ,
You can’t perform that action at this time.
0 commit comments