diff options
Diffstat (limited to 'src/pkg/math/asinh.go')
-rw-r--r-- | src/pkg/math/asinh.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pkg/math/asinh.go b/src/pkg/math/asinh.go index c1cad563c..f786dd9f8 100644 --- a/src/pkg/math/asinh.go +++ b/src/pkg/math/asinh.go @@ -33,8 +33,8 @@ package math // Asinh(x) calculates the inverse hyperbolic sine of x. // // Special cases are: -// Asinh(+Inf) = +Inf -// Asinh(-Inf) = -Inf +// Asinh(±0) = ±0 +// Asinh(±Inf) = ±Inf // Asinh(NaN) = NaN func Asinh(x float64) float64 { const ( |