summaryrefslogtreecommitdiffstats
path: root/lib/libm/src/e_log.c
diff options
context:
space:
mode:
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,