We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ff12ab2 commit 6c92baeCopy full SHA for 6c92bae
library/std/src/time/monotonic.rs
@@ -14,7 +14,7 @@ pub mod inner {
14
15
pub(in crate::time) const ZERO: time::Instant = time::Instant::zero();
16
17
- // bits 30 and 31 are never used since the seconds part never exceeds 10^9
+ // bits 30 and 31 are never used since the nanoseconds part never exceeds 10^9
18
const UNINITIALIZED: u64 = 0b11 << 30;
19
static MONO: AtomicU64 = AtomicU64::new(UNINITIALIZED);
20
0 commit comments