From 4e5d5c2e56a2373fbb4cae56ce96634de6ef347e Mon Sep 17 00:00:00 2001 From: scottmcm Date: Wed, 14 Apr 2021 20:13:14 +0000 Subject: [PATCH] Typo fix: fist -> first (#1117) --- library/stdarch/crates/core_arch/src/x86/sse.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/library/stdarch/crates/core_arch/src/x86/sse.rs b/library/stdarch/crates/core_arch/src/x86/sse.rs index 25e2af93a325..f9a39e20a037 100644 --- a/library/stdarch/crates/core_arch/src/x86/sse.rs +++ b/library/stdarch/crates/core_arch/src/x86/sse.rs @@ -148,8 +148,8 @@ pub unsafe fn _mm_rcp_ps(a: __m128) -> __m128 { rcpps(a) } -/// Returns the approximate reciprocal square root of the fist single-precision -/// (32-bit) floating-point elements in `a`, the other elements are unchanged. +/// Returns the approximate reciprocal square root of the first single-precision +/// (32-bit) floating-point element in `a`, the other elements are unchanged. /// /// [Intel's documentation](https://software.intel.com/sites/landingpage/IntrinsicsGuide/#text=_mm_rsqrt_ss) #[inline]