diff options
author | Mark Dickinson <dickinsm@gmail.com> | 2015-01-11 13:22:44 (GMT) |
---|---|---|
committer | Mark Dickinson <dickinsm@gmail.com> | 2015-01-11 13:22:44 (GMT) |
commit | cc8617b93a34f8dfcff9e686ee91d8fb1802bc2b (patch) | |
tree | 625272f5ee43e7d8dc05cae4e5512128412b58c3 /Doc | |
parent | a5d0c7c2fdd638d684acdb5391e0987b1e37f56a (diff) | |
parent | dfe0b2326b9700f5f5f5af566488dfe913348ab9 (diff) | |
download | cpython-cc8617b93a34f8dfcff9e686ee91d8fb1802bc2b.zip cpython-cc8617b93a34f8dfcff9e686ee91d8fb1802bc2b.tar.gz cpython-cc8617b93a34f8dfcff9e686ee91d8fb1802bc2b.tar.bz2 |
Issue #21092: Merge from 3.4.
Diffstat (limited to 'Doc')
-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. |