fix documentation typo

Remove redundant "neither" in the documentation comment.
This commit is contained in:
Alec Goncharow 2022-01-23 16:42:57 -05:00 committed by GitHub
parent 56566d816d
commit 4fc62c2082
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -105,7 +105,7 @@ macro_rules! impl_float_vector {
self.abs().lanes_ne(Self::splat(0.0)) & (self.to_bits() & Self::splat(<$type>::INFINITY).to_bits()).lanes_eq(Simd::splat(0))
}
/// Returns true for each lane if its value is neither neither zero, infinite,
/// Returns true for each lane if its value is neither zero, infinite,
/// subnormal, or `NaN`.
#[inline]
#[must_use = "method returns a new mask and does not mutate the original value"]