Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Johnston <jjohnstn@redhat.com>2022-12-16 22:18:56 +0300
committerJeff Johnston <jjohnstn@redhat.com>2022-12-16 22:18:56 +0300
commitc8130c3fe8c7c662a94cd720bf62883bd628850f (patch)
tree496f65046532b69e369a1998bbcf84fb3095268d /newlib/libm
parentc04c01524d20611fc14a17d2607e9c50bf5cc83e (diff)
Fix 3 other instances of Reme typo (should be Remez)
Diffstat (limited to 'newlib/libm')
-rw-r--r--newlib/libm/common/s_expm1.c2
-rw-r--r--newlib/libm/common/s_log1p.c2
-rw-r--r--newlib/libm/math/e_log.c2
3 files changed, 3 insertions, 3 deletions
diff --git a/newlib/libm/common/s_expm1.c b/newlib/libm/common/s_expm1.c
index 10b0c8efb..51cdd2188 100644
--- a/newlib/libm/common/s_expm1.c
+++ b/newlib/libm/common/s_expm1.c
@@ -68,7 +68,7 @@ PORTABILITY
* R1(r**2) = 6/r *((exp(r)+1)/(exp(r)-1) - 2/r)
* = 6/r * ( 1 + 2.0*(1/(exp(r)-1) - 1/r))
* = 1 - r^2/60 + r^4/2520 - r^6/100800 + ...
- * We use a special Reme algorithm on [0,0.347] to generate
+ * We use a special Remez algorithm on [0,0.347] to generate
* a polynomial of degree 5 in r*r to approximate R1. The
* maximum error of this polynomial approximation is bounded
* by 2**-61. In other words,
diff --git a/newlib/libm/common/s_log1p.c b/newlib/libm/common/s_log1p.c
index c44461e8d..e3a3d9d9c 100644
--- a/newlib/libm/common/s_log1p.c
+++ b/newlib/libm/common/s_log1p.c
@@ -65,7 +65,7 @@ Interface Definition (Issue 2).
* 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 Remez 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,
diff --git a/newlib/libm/math/e_log.c b/newlib/libm/math/e_log.c
index ac4a95068..461ae0309 100644
--- a/newlib/libm/math/e_log.c
+++ b/newlib/libm/math/e_log.c
@@ -23,7 +23,7 @@
* 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 Remez 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,