diff options
| author | blyxyas <blyxyas@gmail.com> | 2024-05-18 18:08:11 +0200 |
|---|---|---|
| committer | blyxyas <blyxyas@gmail.com> | 2024-05-18 18:12:18 +0200 |
| commit | 435f7068b0acd39dc48ef84793e658e8eb89e342 (patch) | |
| tree | 460a353546356ff9b00c17622bd3c4363084c80b | |
| parent | 4fa3e88811c088d8d3da7e99dc1602f2b48156f9 (diff) | |
| download | rust-435f7068b0acd39dc48ef84793e658e8eb89e342.tar.gz rust-435f7068b0acd39dc48ef84793e658e8eb89e342.zip | |
Fix typos (taking into account review comments)
| -rw-r--r-- | crates/core_simd/src/ops.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/core_simd/src/ops.rs b/crates/core_simd/src/ops.rs index d8e10eeaa1a..dd7303a97b1 100644 --- a/crates/core_simd/src/ops.rs +++ b/crates/core_simd/src/ops.rs @@ -122,7 +122,7 @@ macro_rules! for_base_types { #[inline] #[must_use = "operator returns a new vector without mutating the inputs"] // TODO: only useful for int Div::div, but we hope that this - // will essentially always always get inlined anyway. + // will essentially always get inlined anyway. #[track_caller] fn $call(self, rhs: Self) -> Self::Output { $macro_impl!(self, rhs, $inner, $scalar) |
