diff options
| author | Caleb Zulawski <caleb.zulawski@gmail.com> | 2022-01-24 20:11:17 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-01-24 20:11:17 -0500 |
| commit | 36cca22f16e1e67076ac4490cddd6002b3ddea2b (patch) | |
| tree | 493004938ec5391e1ae3afeb762a8175a04a7576 | |
| parent | 4fc62c20829487a87fe161d8f0ea4789df6c1a01 (diff) | |
| download | rust-36cca22f16e1e67076ac4490cddd6002b3ddea2b.tar.gz rust-36cca22f16e1e67076ac4490cddd6002b3ddea2b.zip | |
Update crates/core_simd/src/vector/float.rs
Co-authored-by: Alexander Ronald Altman <alexanderaltman@me.com>
| -rw-r--r-- | crates/core_simd/src/vector/float.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/core_simd/src/vector/float.rs b/crates/core_simd/src/vector/float.rs index ae900ff32a0..fcc7f6d8d1c 100644 --- a/crates/core_simd/src/vector/float.rs +++ b/crates/core_simd/src/vector/float.rs @@ -106,7 +106,7 @@ macro_rules! impl_float_vector { } /// Returns true for each lane if its value is neither zero, infinite, - /// subnormal, or `NaN`. + /// subnormal, nor `NaN`. #[inline] #[must_use = "method returns a new mask and does not mutate the original value"] pub fn is_normal(self) -> Mask<$mask_ty, LANES> { |
