Merge pull request #435 from LaihoE/fix_ne_typo

fix typo in cmp_ne docs
This commit is contained in:
Caleb Zulawski 2024-08-30 18:33:15 -04:00 committed by GitHub
commit 1ef335ec0c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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;
}