about summary refs log tree commit diff
diff options
context:
space:
mode:
authorblyxyas <blyxyas@gmail.com>2024-05-18 18:08:11 +0200
committerblyxyas <blyxyas@gmail.com>2024-05-18 18:12:18 +0200
commit435f7068b0acd39dc48ef84793e658e8eb89e342 (patch)
tree460a353546356ff9b00c17622bd3c4363084c80b
parent4fa3e88811c088d8d3da7e99dc1602f2b48156f9 (diff)
downloadrust-435f7068b0acd39dc48ef84793e658e8eb89e342.tar.gz
rust-435f7068b0acd39dc48ef84793e658e8eb89e342.zip
Fix typos (taking into account review comments)
-rw-r--r--crates/core_simd/src/ops.rs2
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)