summaryrefslogtreecommitdiffstats
path: root/Modules/cmathmodule.c
diff options
context:
space:
mode:
authorFred Drake <fdrake@acm.org>1999-03-16 14:17:48 (GMT)
committerFred Drake <fdrake@acm.org>1999-03-16 14:17:48 (GMT)
commit0e11c49f042efcbcd7a8d8a32773a4ca52f4721a (patch)
tree677a6232574683dba43dc31bef1306998f4077fe /Modules/cmathmodule.c
parentcaa69fdf4c3deecb766c7ce1f2519dc0472df7d9 (diff)
downloadcpython-0e11c49f042efcbcd7a8d8a32773a4ca52f4721a.zip
cpython-0e11c49f042efcbcd7a8d8a32773a4ca52f4721a.tar.gz
cpython-0e11c49f042efcbcd7a8d8a32773a4ca52f4721a.tar.bz2
Docstring fix: acosh() returns the hyperbolic arccosine, not the
hyperbolic cosine. Problem report via David Ascher by one of his students.
Diffstat (limited to 'Modules/cmathmodule.c')
-rw-r--r--Modules/cmathmodule.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/cmathmodule.c b/Modules/cmathmodule.c
index 060cc6f..ab8b5e1 100644
--- a/Modules/cmathmodule.c
+++ b/Modules/cmathmodule.c
@@ -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)