git: cd4aae2fa9d3 - main - msun: Fix a typo in a source code comment
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Mon, 17 Aug 2026 05:58:57 UTC
The branch main has been updated by gbe:
URL: https://cgit.FreeBSD.org/src/commit/?id=cd4aae2fa9d35015248c445752e23800e75e8517
commit cd4aae2fa9d35015248c445752e23800e75e8517
Author: Gordon Bergling <gbe@FreeBSD.org>
AuthorDate: 2026-08-17 05:47:17 +0000
Commit: Gordon Bergling <gbe@FreeBSD.org>
CommitDate: 2026-08-17 05:47:17 +0000
msun: Fix a typo in a source code comment
- s/uneccessarily/unnecessarily/
Obtained from: NetBSD
MFC after: 3 days
---
lib/msun/src/catrig.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lib/msun/src/catrig.c b/lib/msun/src/catrig.c
index 45af164a66c5..2ae0bb5e0522 100644
--- a/lib/msun/src/catrig.c
+++ b/lib/msun/src/catrig.c
@@ -476,7 +476,7 @@ clog_for_large_values(double complex z)
* (however, actually use 1/2 instead as it is simpler).
*
* Dividing by E causes an insignificant loss of accuracy; however
- * this method is still poor since it is uneccessarily slow.
+ * this method is still poor since it is unnecessarily slow.
*/
if (ax > DBL_MAX / 2)
return (CMPLX(log(hypot(x / m_e, y / m_e)) + 1, atan2(y, x)));