git: cd4aae2fa9d3 - main - msun: Fix a typo in a source code comment
Gordon Bergling <[email protected]>
| Newsgroups | gmane.os.freebsd.devel.cvs.src |
|---|---|
| Message-ID | <6a82a321.3afca.6496c8ab__49203.6100638629$1786946421$gmane$org@gitrepo.freebsd.org> |
The branch main has been updated by gbe: URL: https://cgit.FreeBSD.org/src/commit/?id=cd4aae2fa9d35015248c445752e23800e75e8517 commit cd4aae2fa9d35015248c445752e23800e75e8517 Author: Gordon Bergling <[email protected]> AuthorDate: 2026-08-17 05:47:17 +0000 Commit: Gordon Bergling <[email protected]> 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)));