diff options
Diffstat (limited to 'src/pkg/math/copysign.go')
-rw-r--r-- | src/pkg/math/copysign.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pkg/math/copysign.go b/src/pkg/math/copysign.go index ee65456a1..719c64b9e 100644 --- a/src/pkg/math/copysign.go +++ b/src/pkg/math/copysign.go @@ -4,7 +4,7 @@ package math -// Copysign(x, y) returns a value with the magnitude +// Copysign returns a value with the magnitude // of x and the sign of y. func Copysign(x, y float64) float64 { const sign = 1 << 63 |