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 /Doc/library/cmath.rst | |
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 'Doc/library/cmath.rst')
-rw-r--r-- | Doc/library/cmath.rst | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Doc/library/cmath.rst b/Doc/library/cmath.rst index d7778df..a981d94 100644 --- a/Doc/library/cmath.rst +++ b/Doc/library/cmath.rst @@ -149,13 +149,13 @@ Hyperbolic functions .. function:: acosh(x) - Return the hyperbolic arc cosine of *x*. There is one branch cut, extending left - from 1 along the real axis to -∞, continuous from above. + Return the inverse hyperbolic cosine of *x*. There is one branch cut, + extending left from 1 along the real axis to -∞, continuous from above. .. function:: asinh(x) - Return the hyperbolic arc sine of *x*. There are two branch cuts: + Return the inverse hyperbolic sine of *x*. There are two branch cuts: One extends from ``1j`` along the imaginary axis to ``∞j``, continuous from the right. The other extends from ``-1j`` along the imaginary axis to ``-∞j``, continuous from the left. @@ -163,7 +163,7 @@ Hyperbolic functions .. function:: atanh(x) - Return the hyperbolic arc tangent of *x*. There are two branch cuts: One + Return the inverse hyperbolic tangent of *x*. There are two branch cuts: One extends from ``1`` along the real axis to ``∞``, continuous from below. The other extends from ``-1`` along the real axis to ``-∞``, continuous from above. |