]> granicus.if.org Git - python/commitdiff
Docstring fix: acosh() returns the hyperbolic arccosine, not the
authorFred Drake <fdrake@acm.org>
Tue, 16 Mar 1999 14:17:48 +0000 (14:17 +0000)
committerFred Drake <fdrake@acm.org>
Tue, 16 Mar 1999 14:17:48 +0000 (14:17 +0000)
hyperbolic cosine.  Problem report via David Ascher by one of his
students.

Modules/cmathmodule.c

index 060cc6f9baf21d34faffd3f243d3180475f1d09f..ab8b5e1271a727973aef48937928e6aa5970b10e 100644 (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)