mirror of https://github.com/python/cpython
Docstring fix: acosh() returns the hyperbolic arccosine, not the
hyperbolic cosine. Problem report via David Ascher by one of his students.
This commit is contained in:
parent
caa69fdf4c
commit
0e11c49f04
|
@ -64,7 +64,7 @@ static Py_complex c_acosh(x)
|
|||
static char c_acosh_doc [] =
|
||||
"acosh(x)\n\
|
||||
\n\
|
||||
Return the hyperbolic cosine of x.";
|
||||
Return the hyperbolic arccosine of x.";
|
||||
|
||||
|
||||
static Py_complex c_asin(x)
|
||||
|
|
Loading…
Reference in New Issue