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.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pkg/math/sin.go b/src/pkg/math/sin.go
index 9fc69606c..0c26a767b 100644
--- a/src/pkg/math/sin.go
+++ b/src/pkg/math/sin.go
@@ -20,7 +20,7 @@ func sinus(x float64, quad int) float64 {
Q2 = .9463096101538208180571257e4;
Q3 = .1326534908786136358911494e3;
)
- if(x < 0) {
+ if x < 0 {
x = -x;
quad = quad+2;
}