From f2c94ddd0ad79d972b6a707978cc09f3a8a6dbbf Mon Sep 17 00:00:00 2001 From: Steve Kargl Date: Thu, 27 Jul 2023 02:21:44 +0800 Subject: [PATCH] msun: Fix typo in math_private.h comment PR: 272738 MFC after: 3 days --- lib/msun/src/math_private.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/msun/src/math_private.h b/lib/msun/src/math_private.h index df526e71e54..ec2da21f955 100644 --- a/lib/msun/src/math_private.h +++ b/lib/msun/src/math_private.h @@ -624,7 +624,7 @@ rnintf(__float_t x) * The complications for extra precision are smaller for rnintl() since it * can safely assume that the rounding precision has been increased from * its default to FP_PE on x86. We don't exploit that here to get small - * optimizations from limiting the rangle to double. We just need it for + * optimizations from limiting the range to double. We just need it for * the magic number to work with long doubles. ld128 callers should use * rnint() instead of this if possible. ld80 callers should prefer * rnintl() since for amd64 this avoids swapping the register set, while