Skip to content

Commit 625f7c3

Browse files
authored
Rollup merge of rust-lang#124948 - blyxyas:remove-repeated-words, r=compiler-errors
chore: Remove repeated words (extension of rust-lang#124924) When I saw rust-lang#124924 I thought "Hey, I'm sure that there are far more than just two typos of this nature in the codebase". So here's some more typo-fixing. Some found with regex, some found with a spellchecker. Every single one manually reviewed by me (along with hundreds of false negatives by the tools)
2 parents 7bdc025 + ee7954d commit 625f7c3

File tree

1 file changed

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

1 file changed

+1
-1
lines changed

portable-simd/crates/core_simd/src/ops.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ macro_rules! for_base_types {
122122
#[inline]
123123
#[must_use = "operator returns a new vector without mutating the inputs"]
124124
// TODO: only useful for int Div::div, but we hope that this
125-
// will essentially always always get inlined anyway.
125+
// will essentially always get inlined anyway.
126126
#[track_caller]
127127
fn $call(self, rhs: Self) -> Self::Output {
128128
$macro_impl!(self, rhs, $inner, $scalar)

0 commit comments

Comments
 (0)