git: bbf233910587 - stable/15 - msun: Fix a typo in a source code comment

From: Gordon Bergling <gbe_at_FreeBSD.org>
Date: Thu, 20 Aug 2026 06:02:06 UTC
The branch stable/15 has been updated by gbe:

URL: https://cgit.FreeBSD.org/src/commit/?id=bbf233910587fd36a46459102d46bd70f5c0b8dd

commit bbf233910587fd36a46459102d46bd70f5c0b8dd
Author:     Gordon Bergling <gbe@FreeBSD.org>
AuthorDate: 2026-08-17 05:47:17 +0000
Commit:     Gordon Bergling <gbe@FreeBSD.org>
CommitDate: 2026-08-20 06:00:12 +0000

    msun: Fix a typo in a source code comment
    
    - s/uneccessarily/unnecessarily/
    
    Obtained from:  NetBSD
    
    (cherry picked from commit cd4aae2fa9d35015248c445752e23800e75e8517)
---
 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)));