From 5449a42a1cc3f64c72e9724c1563789de22a28a3 Mon Sep 17 00:00:00 2001 From: BlackHoleFox Date: Tue, 29 Dec 2020 02:10:29 -0600 Subject: [PATCH] Fix small typo in time comment --- library/std/src/sys/unix/time.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/std/src/sys/unix/time.rs b/library/std/src/sys/unix/time.rs index fac4b05ad0b5f..23a5c81c0053b 100644 --- a/library/std/src/sys/unix/time.rs +++ b/library/std/src/sys/unix/time.rs @@ -237,7 +237,7 @@ mod inner { // `denom` field. // // Encoding this as a single `AtomicU64` allows us to use `Relaxed` - // operations, as we are only interested in in the effects on a single + // operations, as we are only interested in the effects on a single // memory location. static INFO_BITS: AtomicU64 = AtomicU64::new(0);