diff options
Diffstat (limited to 'src/pkg/math/hypot.go')
-rw-r--r-- | src/pkg/math/hypot.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pkg/math/hypot.go b/src/pkg/math/hypot.go index df4d3eb70..3846e6d87 100644 --- a/src/pkg/math/hypot.go +++ b/src/pkg/math/hypot.go @@ -8,7 +8,7 @@ package math Hypot -- sqrt(p*p + q*q), but overflows only if the result does. */ -// Hypot computes Sqrt(p*p + q*q), taking care to avoid +// Hypot returns Sqrt(p*p + q*q), taking care to avoid // unnecessary overflow and underflow. // // Special cases are: |