commit | 2c5ec1ebc077c57c2e4490b9836eba9425946995 | [log] [tgz] |
---|---|---|
author | Russ Cox <rsc@golang.org> | Tue Oct 06 19:40:35 2009 -0700 |
committer | Russ Cox <rsc@golang.org> | Tue Oct 06 19:40:35 2009 -0700 |
tree | 0659cc93b73ec28c8a1b46725f0c3d540bda5daf | |
parent | 6faacd2244ca3bc11686f76e95f528b8b3806e85 [diff] [blame] |
apply gofmt to malloc math once os R=gri DELTA=566 (4 added, 14 deleted, 548 changed) OCL=35410 CL=35419
diff --git a/src/pkg/math/atan2.go b/src/pkg/math/atan2.go index efd5cb9..5ded1a4 100644 --- a/src/pkg/math/atan2.go +++ b/src/pkg/math/atan2.go
@@ -14,14 +14,14 @@ if x >= 0 { return Pi/2; } - return -Pi/2; + return -Pi / 2; } q := Atan(x/y); if y < 0 { if q <= 0 { - return q + Pi; + return q+Pi; } - return q - Pi; + return q-Pi; } return q; }