Skip to content

Commit 1ef335e

Browse files
Merge pull request rust-lang#435 from LaihoE/fix_ne_typo
fix typo in cmp_ne docs
2 parents 8fdb4f8 + c535320 commit 1ef335e

File tree

1 file changed

+1
-1
lines changed
  • crates/core_simd/src/simd/cmp

1 file changed

+1
-1
lines changed

crates/core_simd/src/simd/cmp/eq.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ pub trait SimdPartialEq {
1212
#[must_use = "method returns a new mask and does not mutate the original value"]
1313
fn simd_eq(self, other: Self) -> Self::Mask;
1414

15-
/// Test if each element is equal to the corresponding element in `other`.
15+
/// Test if each element is not equal to the corresponding element in `other`.
1616
#[must_use = "method returns a new mask and does not mutate the original value"]
1717
fn simd_ne(self, other: Self) -> Self::Mask;
1818
}

0 commit comments

Comments
 (0)