Skip to content

Commit

Permalink
Merge pull request #515 from bwmf2/typo
Browse files Browse the repository at this point in the history
Fix typo
  • Loading branch information
JohnTitor committed Feb 18, 2023
2 parents ffa7487 + c1dd6df commit 2a791b3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/dbghelp.rs
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ macro_rules! dbghelp {
static mut DBGHELP: Dbghelp = Dbghelp {
// Initially we haven't loaded the DLL
dll: 0 as *mut _,
// Initiall all functions are set to zero to say they need to be
// Initially all functions are set to zero to say they need to be
// dynamically loaded.
$($name: 0,)*
};
Expand Down
2 changes: 1 addition & 1 deletion src/print/fuchsia.rs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ const PT_NOTE: u32 = 4;

// Now we have to replicate, bit for bit, the structure of the dl_phdr_info
// type used by fuchsia's current dynamic linker. Chromium also has this ABI
// boundary as well as crashpad. Eventully we'd like to move these cases to
// boundary as well as crashpad. Eventually we'd like to move these cases to
// use elf-search but we'd need to provide that in the SDK and that has not
// yet been done. Thus we (and they) are stuck having to use this method
// which incurs a tight coupling with the fuchsia libc.
Expand Down
2 changes: 1 addition & 1 deletion src/symbolize/gimli/mmap_windows.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ use core::ptr;
use core::slice;

pub struct Mmap {
// keep the file alive to prevent it from ebeing deleted which would cause
// keep the file alive to prevent it from being deleted which would cause
// us to read bad data.
_file: File,
ptr: *mut c_void,
Expand Down

0 comments on commit 2a791b3

Please sign in to comment.