diff options
Diffstat (limited to 'Modules/_math.c')
-rw-r--r-- | Modules/_math.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/_math.c b/Modules/_math.c index 02d8f1c..68e3a23 100644 --- a/Modules/_math.c +++ b/Modules/_math.c @@ -90,7 +90,7 @@ _Py_acosh(double x) * asinh(x) = sign(x) * log [ |x| + sqrt(x*x+1) ] * we have * asinh(x) := x if 1+x*x=1, - * := sign(x)*(log(x)+ln2)) for large |x|, else + * := sign(x)*(log(x)+ln2) for large |x|, else * := sign(x)*log(2|x|+1/(|x|+sqrt(x*x+1))) if|x|>2, else * := sign(x)*log1p(|x| + x^2/(1 + sqrt(1+x^2))) */ |