From d6737fd6458a2c46f115ecc88f2642215f80b479 Mon Sep 17 00:00:00 2001 From: Taiki Endo Date: Mon, 18 Mar 2024 02:08:55 +0900 Subject: [PATCH] utils: Tweak comment in atomic/mod.rs --- crossbeam-utils/src/atomic/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crossbeam-utils/src/atomic/mod.rs b/crossbeam-utils/src/atomic/mod.rs index 7b39fe474..8662ded56 100644 --- a/crossbeam-utils/src/atomic/mod.rs +++ b/crossbeam-utils/src/atomic/mod.rs @@ -11,7 +11,7 @@ // In narrow architectures (pointer width <= 16), the counter is still <= 32-bit and may be // vulnerable to wrap around. But it's mostly okay, since in such a primitive hardware, the // counter will not be increased that fast. -// Note that Rust (and C99) pointers must be at least 16-bits: https://github.com/rust-lang/rust/pull/49305 +// Note that Rust (and C99) pointers must be at least 16-bit (i.e., 8-bit targets are impossible): https://github.com/rust-lang/rust/pull/49305 #[cfg_attr( any(target_pointer_width = "16", target_pointer_width = "32"), path = "seq_lock_wide.rs"