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 71b0663 commit 2a2c120Copy full SHA for 2a2c120
library/std/src/sys/pal/unix/time.rs
@@ -67,7 +67,7 @@ impl fmt::Debug for SystemTime {
67
impl Timespec {
68
const MAX: Timespec = unsafe { Self::new_unchecked(i64::MAX, 1_000_000_000 - 1) };
69
70
- // As described below, on AppleOS, dates before epoch are represented differently.
+ // As described below, on Apple OS, dates before epoch are represented differently.
71
// This is not an issue here however, because we are using tv_sec = i64::MIN,
72
// which will cause the compatibility wrapper to not be executed at all.
73
const MIN: Timespec = unsafe { Self::new_unchecked(i64::MIN, 0) };
0 commit comments