summaryrefslogtreecommitdiffstats
path: root/lib/libm/src/e_log.c
diff options
context:
space:
mode:
authormartynas <martynas@openbsd.org>2008-07-20 13:11:00 +0000
committermartynas <martynas@openbsd.org>2008-07-20 13:11:00 +0000
commit71a22d32935aae870159b8b02b43175c08e3a4eb (patch)
treed31f9c13a58ef0863b3cb15859cefed40e452754 /lib/libm/src/e_log.c
parentget in the bug fix for pow, from fdlibm 5.3. also adapt it for (diff)
downloadwireguard-openbsd-71a22d32935aae870159b8b02b43175c08e3a4eb.tar.xz
wireguard-openbsd-71a22d32935aae870159b8b02b43175c08e3a4eb.zip
Reme algorithm -> Remes algorithm. in comments
Diffstat (limited to 'lib/libm/src/e_log.c')
-rw-r--r--lib/libm/src/e_log.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libm/src/e_log.c b/lib/libm/src/e_log.c
index efb74e6cea4..968faea8ce5 100644
--- a/lib/libm/src/e_log.c
+++ b/lib/libm/src/e_log.c
@@ -26,7 +26,7 @@ static char rcsid[] = "$NetBSD: e_log.c,v 1.8 1995/05/10 20:45:49 jtc Exp $";
* Let s = f/(2+f) ; based on log(1+f) = log(1+s) - log(1-s)
* = 2s + 2/3 s**3 + 2/5 s**5 + .....,
* = 2s + s*R
- * We use a special Reme algorithm on [0,0.1716] to generate
+ * We use a special Remes algorithm on [0,0.1716] to generate
* a polynomial of degree 14 to approximate R The maximum error
* of this polynomial approximation is bounded by 2**-58.45. In
* other words,