Skip to content

Commit 566497c

Browse files
committed
macOS
1 parent a7a271f commit 566497c

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

lib/bencher_context/src/client/platform/mod.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ impl fmt::Display for Fingerprint {
1717
#[derive(Debug, Clone, Copy)]
1818
pub enum OperatingSystem {
1919
Linux,
20-
Macos,
20+
MacOS,
2121
Windows,
2222
}
2323

@@ -28,7 +28,7 @@ impl fmt::Display for OperatingSystem {
2828
"{}",
2929
match self {
3030
OperatingSystem::Linux => "Linux",
31-
OperatingSystem::Macos => "Macos",
31+
OperatingSystem::MacOS => "macOS",
3232
OperatingSystem::Windows => "Windows",
3333
}
3434
)

lib/bencher_context/src/client/platform/target_os/macos.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,6 @@ impl crate::Fingerprint {
2929

3030
impl OperatingSystem {
3131
pub fn current() -> Self {
32-
Self::Macos
32+
Self::MacOS
3333
}
3434
}

0 commit comments

Comments
 (0)