diff options
Diffstat (limited to 'libgo/go/math/copysign.go')
-rw-r--r-- | libgo/go/math/copysign.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libgo/go/math/copysign.go b/libgo/go/math/copysign.go index ee65456..719c64b 100644 --- a/libgo/go/math/copysign.go +++ b/libgo/go/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 |