diff options
| -rw-r--r-- | crates/core_simd/src/elements/float.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/core_simd/src/elements/float.rs b/crates/core_simd/src/elements/float.rs index fafbd2a4d21..456dd780dac 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; |
