[review] fix comment

Co-authored-by: Amanieu d'Antras <amanieu@gmail.com>
This commit is contained in:
the8472 2021-08-17 19:31:32 +02:00 committed by GitHub
parent ff12ab2d99
commit 6c92bae7fa
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -14,7 +14,7 @@ pub mod inner {
pub(in crate::time) const ZERO: time::Instant = time::Instant::zero();
// 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
const UNINITIALIZED: u64 = 0b11 << 30;
static MONO: AtomicU64 = AtomicU64::new(UNINITIALIZED);