diff options
| author | Caleb Zulawski <caleb.zulawski@gmail.com> | 2024-08-30 18:33:15 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-08-30 18:33:15 -0400 |
| commit | 1ef335ec0c2d98d363df989fd7b232b0390d34f2 (patch) | |
| tree | 527584de8e581753277d11ec9975623baaca2e62 | |
| parent | 8fdb4f8882c1a3fb5d75b1f7ee3fe03d45ca087b (diff) | |
| parent | c535320c7ec63858bb823ac889a9ae77d646ab2c (diff) | |
| download | rust-1ef335ec0c2d98d363df989fd7b232b0390d34f2.tar.gz rust-1ef335ec0c2d98d363df989fd7b232b0390d34f2.zip | |
Merge pull request #435 from LaihoE/fix_ne_typo
fix typo in cmp_ne docs
| -rw-r--r-- | crates/core_simd/src/simd/cmp/eq.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/core_simd/src/simd/cmp/eq.rs b/crates/core_simd/src/simd/cmp/eq.rs index 5b4615ce51d..93989ce91b8 100644 --- a/crates/core_simd/src/simd/cmp/eq.rs +++ b/crates/core_simd/src/simd/cmp/eq.rs @@ -12,7 +12,7 @@ pub trait SimdPartialEq { #[must_use = "method returns a new mask and does not mutate the original value"] fn simd_eq(self, other: Self) -> Self::Mask; - /// Test if each element is equal to the corresponding element in `other`. + /// Test if each element is not equal to the corresponding element in `other`. #[must_use = "method returns a new mask and does not mutate the original value"] fn simd_ne(self, other: Self) -> Self::Mask; } |
