aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkilavvy <[email protected]>2025-06-20 15:05:49 +0200
committerJack O'Connor <[email protected]>2025-06-20 07:15:11 -0700
commitfeb303f38d9c814cfb78cddf7c88864262cddddb (patch)
tree3e885ec24c51aced84ddac32816d2d53697a201f
parent529d536da241ed2c9fbc8c9eaf9b0958537876f2 (diff)
Update wasm32_simd.rs
-rw-r--r--src/wasm32_simd.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wasm32_simd.rs b/src/wasm32_simd.rs
index c4e2771..ff253aa 100644
--- a/src/wasm32_simd.rs
+++ b/src/wasm32_simd.rs
@@ -134,7 +134,7 @@ fn unpackhi_epi32(a: v128, b: v128) -> v128 {
fn shuffle_epi32<const I3: usize, const I2: usize, const I1: usize, const I0: usize>(
a: v128,
) -> v128 {
- // Please note that generic arguments in delcaration and implementation are in
+ // Please note that generic arguments in declaration and implementation are in
// different order.
// second arg is actually ignored.
i32x4_shuffle::<I0, I1, I2, I3>(a, a)