summaryrefslogtreecommitdiff
path: root/src/pkg/math/asin.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/pkg/math/asin.go')
-rw-r--r--src/pkg/math/asin.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pkg/math/asin.go b/src/pkg/math/asin.go
index 00bf61ee4..88b851e55 100644
--- a/src/pkg/math/asin.go
+++ b/src/pkg/math/asin.go
@@ -11,7 +11,7 @@ package math
after appropriate range reduction.
*/
-// Asin returns the arcsine of x.
+// Asin returns the arcsine, in radians, of x.
//
// Special cases are:
// Asin(±0) = ±0
@@ -44,7 +44,7 @@ func asin(x float64) float64 {
return temp
}
-// Acos returns the arccosine of x.
+// Acos returns the arccosine, in radians, of x.
//
// Special case is:
// Acos(x) = NaN if x < -1 or x > 1