git: f2c94ddd0ad7 - main - msun: Fix typo in math_private.h comment
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Wed, 26 Jul 2023 18:23:48 UTC
The branch main has been updated by lwhsu:
URL: https://cgit.FreeBSD.org/src/commit/?id=f2c94ddd0ad79d972b6a707978cc09f3a8a6dbbf
commit f2c94ddd0ad79d972b6a707978cc09f3a8a6dbbf
Author: Steve Kargl <kargl@FreeBSD.org>
AuthorDate: 2023-07-26 18:21:44 +0000
Commit: Li-Wen Hsu <lwhsu@FreeBSD.org>
CommitDate: 2023-07-26 18:21:44 +0000
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 df526e71e545..ec2da21f955c 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