summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMark Dickinson <dickinsm@gmail.com>2008-04-19 21:49:22 (GMT)
committerMark Dickinson <dickinsm@gmail.com>2008-04-19 21:49:22 (GMT)
commit47a84aa9781392bb073d1c97ee7b95e760990727 (patch)
treee063ee813ef07deb14d5972a3cbba2435d70bb90
parent48f7a4aabb056120f5e9f9843b7350e7739e4706 (diff)
downloadcpython-47a84aa9781392bb073d1c97ee7b95e760990727.zip
cpython-47a84aa9781392bb073d1c97ee7b95e760990727.tar.gz
cpython-47a84aa9781392bb073d1c97ee7b95e760990727.tar.bz2
Move asinh documentation to the proper place.
Remove meaningless 'in radians' from inverse hyperbolic functions.
-rw-r--r--Doc/library/math.rst35
1 files changed, 18 insertions, 17 deletions
diff --git a/Doc/library/math.rst b/Doc/library/math.rst
index 2c1677c..d8e7d44 100644
--- a/Doc/library/math.rst
+++ b/Doc/library/math.rst
@@ -213,13 +213,6 @@ Trigonometric functions:
Return the sine of *x* radians.
-.. function:: asinh(x)
-
- Return the inverse hyperbolic sine of *x*, in radians.
-
- .. versionadded:: 2.6
-
-
.. function:: tan(x)
Return the tangent of *x* radians.
@@ -239,18 +232,32 @@ Angular conversion:
Hyperbolic functions:
-.. function:: cosh(x)
+.. function:: acosh(x)
- Return the hyperbolic cosine of *x*.
+ Return the inverse hyperbolic cosine of *x*.
+ .. versionadded:: 2.6
-.. function:: acosh(x)
- Return the inverse hyperbolic cosine of *x*, in radians.
+.. function:: asinh(x)
+
+ Return the inverse hyperbolic sine of *x*.
.. versionadded:: 2.6
+.. function:: atanh(x)
+
+ Return the inverse hyperbolic tangent of *x*.
+
+ .. versionadded:: 2.6
+
+
+.. function:: cosh(x)
+
+ Return the hyperbolic cosine of *x*.
+
+
.. function:: sinh(x)
Return the hyperbolic sine of *x*.
@@ -261,12 +268,6 @@ Hyperbolic functions:
Return the hyperbolic tangent of *x*.
-.. function:: atanh(x)
-
- Return the inverse hyperbolic tangent of *x*, in radians.
-
- .. versionadded:: 2.6
-
The module also defines two mathematical constants: