Skip to content

Commit 2a791b3

Browse files
authored
Merge pull request #515 from bwmf2/typo
Fix typo
2 parents ffa7487 + c1dd6df commit 2a791b3

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/dbghelp.rs

+1-1
Original file line numberDiff line numberDiff 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
};

src/print/fuchsia.rs

+1-1
Original file line numberDiff line numberDiff 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.

src/symbolize/gimli/mmap_windows.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ use core::ptr;
66
use core::slice;
77

88
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
1010
// us to read bad data.
1111
_file: File,
1212
ptr: *mut c_void,

0 commit comments

Comments
 (0)