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:
Fred Drake 1999-03-16 14:17:48 +00:00
parent caa69fdf4c
commit 0e11c49f04
1 changed files with 1 additions and 1 deletions

View File

@ -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)