summaryrefslogtreecommitdiff
path: root/src/pkg/math/hypot.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/pkg/math/hypot.go')
-rw-r--r--src/pkg/math/hypot.go6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/pkg/math/hypot.go b/src/pkg/math/hypot.go
index 3846e6d87..2087cb05b 100644
--- a/src/pkg/math/hypot.go
+++ b/src/pkg/math/hypot.go
@@ -12,8 +12,10 @@ package math
// unnecessary overflow and underflow.
//
// Special cases are:
-// Hypot(p, q) = +Inf if p or q is infinite
-// Hypot(p, q) = NaN if p or q is NaN
+// Hypot(±Inf, q) = +Inf
+// Hypot(p, ±Inf) = +Inf
+// Hypot(NaN, q) = NaN
+// Hypot(p, NaN) = NaN
func Hypot(p, q float64) float64
func hypot(p, q float64) float64 {