diff --git a/crates/core_simd/src/elements/float.rs b/crates/core_simd/src/elements/float.rs index fafbd2a4d213..456dd780dac0 100644 --- a/crates/core_simd/src/elements/float.rs +++ b/crates/core_simd/src/elements/float.rs @@ -83,7 +83,7 @@ pub trait SimdFloat: Sized + Sealed { /// Returns each lane with the magnitude of `self` and the sign of `sign`. /// - /// If any lane is a `NAN`, then a `NAN` with the sign of `sign` is returned. + /// For any lane containing a `NAN`, a `NAN` with the sign of `sign` is returned. #[must_use = "method returns a new vector and does not mutate the original value"] fn copysign(self, sign: Self) -> Self;