Skip to content

Commit 5aabd91

Browse files
authored
Merge pull request #491 from atouchet/osx
Change "OSX" to "macOS"
2 parents a59e64f + 1c878b3 commit 5aabd91

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/symbolize/gimli/macho.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ type MachSection = <Mach as MachHeader>::Section;
1313
type MachNlist = <Mach as MachHeader>::Nlist;
1414

1515
impl Mapping {
16-
// The loading path for OSX is so different we just have a completely
17-
// different implementation of the function here. On OSX we need to go
16+
// The loading path for macOS is so different we just have a completely
17+
// different implementation of the function here. On macOS we need to go
1818
// probing the filesystem for a bunch of files.
1919
pub fn new(path: &Path) -> Option<Mapping> {
2020
// First up we need to load the unique UUID which is stored in the macho

tests/skip_inner_frames.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ use backtrace::Backtrace;
44
// function for frames which reports the starting address of a symbol. As a
55
// result it's only enabled on a few platforms.
66
const ENABLED: bool = cfg!(all(
7-
// Windows hasn't really been tested, and OSX doesn't support actually
7+
// Windows hasn't really been tested, and macOS doesn't support actually
88
// finding an enclosing frame, so disable this
99
target_os = "linux",
1010
// On ARM finding the enclosing function is simply returning the ip itself.

0 commit comments

Comments
 (0)