git: 06c3e7ce67a2 - stable/14 - msun: Fix a typo in a source code comment
Gordon Bergling <[email protected]>
| Newsgroups | gmane.os.freebsd.devel.cvs.src |
|---|---|
| Message-ID | <6a869909.1a3e7.7ae7a067__11216.3798579545$1787205933$gmane$org@gitrepo.freebsd.org> |
The branch stable/14 has been updated by gbe: URL: https://cgit.FreeBSD.org/src/commit/?id=06c3e7ce67a260b3c74adf3dc37c8e1b5b344ba6 commit 06c3e7ce67a260b3c74adf3dc37c8e1b5b344ba6 Author: Gordon Bergling <[email protected]> AuthorDate: 2026-08-17 05:47:17 +0000 Commit: Gordon Bergling <[email protected]> CommitDate: 2026-08-20 06:03:33 +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)));