summaryrefslogtreecommitdiff
path: root/src/pkg/math/sin.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/pkg/math/sin.go')
-rw-r--r--src/pkg/math/sin.go4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/pkg/math/sin.go b/src/pkg/math/sin.go
index 973aef554..740d6778b 100644
--- a/src/pkg/math/sin.go
+++ b/src/pkg/math/sin.go
@@ -58,6 +58,4 @@ func Cos(x float64) float64 {
}
// Sin returns the sine of x.
-func Sin(x float64) float64 {
- return sinus(x, 0);
-}
+func Sin(x float64) float64 { return sinus(x, 0) }