Skip to content

Commit

Permalink
Fix dbghelp comment (#630)
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisDenton committed Jun 7, 2024
1 parent 9b7c378 commit 2273afb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/backtrace/dbghelp32.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
//! Backtrace strategy for MSVC platforms.
//! Backtrace strategy for Windows platforms.
//!
//! This module contains the ability to generate a backtrace on MSVC using one
//! This module contains the ability to generate a backtrace on Windows using one
//! of two possible methods. The `StackWalkEx` function is primarily used if
//! possible, but not all systems have that. Failing that the `StackWalk64`
//! function is used instead. Note that `StackWalkEx` is favored because it
Expand Down
4 changes: 2 additions & 2 deletions src/backtrace/dbghelp64.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
//! Backtrace strategy for MSVC `x86_64` and `aarch64` platforms.
//! Backtrace strategy for Windows `x86_64` and `aarch64` platforms.
//!
//! This module contains the ability to capture a backtrace on MSVC using
//! This module contains the ability to capture a backtrace on Windows using
//! `RtlVirtualUnwind` to walk the stack one frame at a time. This function is much faster than using
//! `dbghelp!StackWalk*` because it does not load debug info to report inlined frames.
//! We still report inlined frames during symbolization by consulting the appropriate
Expand Down

0 comments on commit 2273afb

Please sign in to comment.