Skip to content

Commit

Permalink
fix typo in cmp_ne docs
Browse files Browse the repository at this point in the history
  • Loading branch information
LaihoE committed Aug 30, 2024
1 parent 8fdb4f8 commit c535320
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/core_simd/src/simd/cmp/eq.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down

0 comments on commit c535320

Please sign in to comment.