We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a7a271f commit 566497cCopy full SHA for 566497c
lib/bencher_context/src/client/platform/mod.rs
@@ -17,7 +17,7 @@ impl fmt::Display for Fingerprint {
17
#[derive(Debug, Clone, Copy)]
18
pub enum OperatingSystem {
19
Linux,
20
- Macos,
+ MacOS,
21
Windows,
22
}
23
@@ -28,7 +28,7 @@ impl fmt::Display for OperatingSystem {
28
"{}",
29
match self {
30
OperatingSystem::Linux => "Linux",
31
- OperatingSystem::Macos => "Macos",
+ OperatingSystem::MacOS => "macOS",
32
OperatingSystem::Windows => "Windows",
33
34
)
lib/bencher_context/src/client/platform/target_os/macos.rs
@@ -29,6 +29,6 @@ impl crate::Fingerprint {
impl OperatingSystem {
pub fn current() -> Self {
- Self::Macos
+ Self::MacOS
0 commit comments