aboutsummaryrefslogtreecommitdiff
path: root/src/wasm32_simd.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/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 1352491..c4e2771 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 imlementation are in
+ // Please note that generic arguments in delcaration and implementation are in
// different order.
// second arg is actually ignored.
i32x4_shuffle::<I0, I1, I2, I3>(a, a)