From 4f6ff9883982a88d0ab519eada1f77cb292a8a34 Mon Sep 17 00:00:00 2001 From: Stoneblackdog <66771495+Stoneblackdog@users.noreply.github.com> Date: Fri, 13 Dec 2024 23:46:38 +0100 Subject: [PATCH] Fix typo in 2325-stable-simd.md --- text/2325-stable-simd.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/text/2325-stable-simd.md b/text/2325-stable-simd.md index 06ae6ee4ebc..b86c58fc070 100644 --- a/text/2325-stable-simd.md +++ b/text/2325-stable-simd.md @@ -181,7 +181,7 @@ let and4bits = _mm_set1_epi8(0xf); As it turns out though, these are all Intel SIMD intrinsics! For example [`_mm_set1_epi8`] is defined as creating an instance of `__m128i`, a 128-bit -integer register. The intrinsic specificall sets all bytes to the first +integer register. The intrinsic specifically sets all bytes to the first argument. These functions are all imported through `std::arch::*` at the top of the