diff options
Diffstat (limited to 'libgo/go/math/sin.go')
-rw-r--r-- | libgo/go/math/sin.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libgo/go/math/sin.go b/libgo/go/math/sin.go index 13fe408ba06..1c5491f6dc4 100644 --- a/libgo/go/math/sin.go +++ b/libgo/go/math/sin.go @@ -109,7 +109,7 @@ var _cos = [...]float64{ 4.16666666666665929218E-2, // 0x3fa555555555554b } -// Cos returns the cosine of x. +// Cos returns the cosine of the radian argument x. // // Special cases are: // Cos(±Inf) = NaN @@ -171,7 +171,7 @@ func cos(x float64) float64 { return y } -// Sin returns the sine of x. +// Sin returns the sine of the radian argument x. // // Special cases are: // Sin(±0) = ±0 |