From 0e11c49f042efcbcd7a8d8a32773a4ca52f4721a Mon Sep 17 00:00:00 2001 From: Fred Drake Date: Tue, 16 Mar 1999 14:17:48 +0000 Subject: Docstring fix: acosh() returns the hyperbolic arccosine, not the hyperbolic cosine. Problem report via David Ascher by one of his students. --- Modules/cmathmodule.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- cgit v0.12