Skip to content

Commit cad7434

Browse files
Merge pull request #231 from AlecGoncharow/patch-1
fix documentation typo
2 parents 56566d8 + 36cca22 commit cad7434

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

crates/core_simd/src/vector/float.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -105,8 +105,8 @@ macro_rules! impl_float_vector {
105105
self.abs().lanes_ne(Self::splat(0.0)) & (self.to_bits() & Self::splat(<$type>::INFINITY).to_bits()).lanes_eq(Simd::splat(0))
106106
}
107107

108-
/// Returns true for each lane if its value is neither neither zero, infinite,
109-
/// subnormal, or `NaN`.
108+
/// Returns true for each lane if its value is neither zero, infinite,
109+
/// subnormal, nor `NaN`.
110110
#[inline]
111111
#[must_use = "method returns a new mask and does not mutate the original value"]
112112
pub fn is_normal(self) -> Mask<$mask_ty, LANES> {

0 commit comments

Comments
 (0)