mirror of
https://github.com/python/cpython.git
synced 2025-08-04 08:59:19 +00:00
Issue #21902: Replace incorrect 'hyperbolic arc sine' (etc.) with 'inverse hyperbolic sine' (etc.). Remove meaningless reference to radians.
This commit is contained in:
parent
bcf8554fd4
commit
dfe0b2326b
3 changed files with 10 additions and 10 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue