diff options
author | Mark Dickinson <dickinsm@gmail.com> | 2015-01-11 13:08:05 (GMT) |
---|---|---|
committer | Mark Dickinson <dickinsm@gmail.com> | 2015-01-11 13:08:05 (GMT) |
commit | dfe0b2326b9700f5f5f5af566488dfe913348ab9 (patch) | |
tree | 5571c7e2cb30cccc0257af5becd075abb5bae04d /Modules/cmathmodule.c | |
parent | bcf8554fd447bba9d45ee3cba2bef7d29c7dfdf2 (diff) | |
download | cpython-dfe0b2326b9700f5f5f5af566488dfe913348ab9.zip cpython-dfe0b2326b9700f5f5f5af566488dfe913348ab9.tar.gz cpython-dfe0b2326b9700f5f5f5af566488dfe913348ab9.tar.bz2 |
Issue #21902: Replace incorrect 'hyperbolic arc sine' (etc.) with 'inverse hyperbolic sine' (etc.). Remove meaningless reference to radians.
Diffstat (limited to 'Modules/cmathmodule.c')
-rw-r--r-- | Modules/cmathmodule.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Modules/cmathmodule.c b/Modules/cmathmodule.c index 91b369a..eb2853c 100644 --- a/Modules/cmathmodule.c +++ b/Modules/cmathmodule.c @@ -192,7 +192,7 @@ c_acosh(Py_complex z) PyDoc_STRVAR(c_acosh_doc, "acosh(x)\n" "\n" -"Return the hyperbolic arccosine of x."); +"Return the inverse hyperbolic cosine of x."); static Py_complex @@ -249,7 +249,7 @@ c_asinh(Py_complex z) PyDoc_STRVAR(c_asinh_doc, "asinh(x)\n" "\n" -"Return the hyperbolic arc sine of x."); +"Return the inverse hyperbolic sine of x."); static Py_complex @@ -353,7 +353,7 @@ c_atanh(Py_complex z) PyDoc_STRVAR(c_atanh_doc, "atanh(x)\n" "\n" -"Return the hyperbolic arc tangent of x."); +"Return the inverse hyperbolic tangent of x."); static Py_complex |