about summary refs log tree commit diff
path: root/library/std/src
diff options
context:
space:
mode:
authorBlackHoleFox <blackholefoxdev@gmail.com>2020-12-29 02:10:29 -0600
committerBlackHoleFox <blackholefoxdev@gmail.com>2020-12-29 02:10:29 -0600
commit5449a42a1cc3f64c72e9724c1563789de22a28a3 (patch)
tree2c5239f979b6587c1e4f18b6f25170c61d8925b0 /library/std/src
parentd75f48e04d7923b44ec45fec5203a0ca749deb32 (diff)
downloadrust-5449a42a1cc3f64c72e9724c1563789de22a28a3.tar.gz
rust-5449a42a1cc3f64c72e9724c1563789de22a28a3.zip
Fix small typo in time comment
Diffstat (limited to 'library/std/src')
-rw-r--r--library/std/src/sys/unix/time.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/std/src/sys/unix/time.rs b/library/std/src/sys/unix/time.rs
index fac4b05ad0b..23a5c81c005 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);