File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -79,7 +79,7 @@ macro_rules! dbghelp {
7979 static mut DBGHELP : Dbghelp = Dbghelp {
8080 // Initially we haven't loaded the DLL
8181 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
8383 // dynamically loaded.
8484 $( $name: 0 , ) *
8585 } ;
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ const PT_NOTE: u32 = 4;
2525
2626// Now we have to replicate, bit for bit, the structure of the dl_phdr_info
2727// 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
2929// use elf-search but we'd need to provide that in the SDK and that has not
3030// yet been done. Thus we (and they) are stuck having to use this method
3131// 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;
66use core:: slice;
77
88pub 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
1010 // us to read bad data.
1111 _file : File ,
1212 ptr : * mut c_void ,
You can’t perform that action at this time.
0 commit comments