summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorMark Dickinson <dickinsm@gmail.com>2015-01-11 13:22:44 (GMT)
committerMark Dickinson <dickinsm@gmail.com>2015-01-11 13:22:44 (GMT)
commitcc8617b93a34f8dfcff9e686ee91d8fb1802bc2b (patch)
tree625272f5ee43e7d8dc05cae4e5512128412b58c3 /Doc
parenta5d0c7c2fdd638d684acdb5391e0987b1e37f56a (diff)
parentdfe0b2326b9700f5f5f5af566488dfe913348ab9 (diff)
downloadcpython-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.rst8
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.