]> Cypherpunks repositories - gostls13.git/commitdiff
add author lines
authorRuss Cox <rsc@golang.org>
Tue, 25 Nov 2008 17:22:58 +0000 (09:22 -0800)
committerRuss Cox <rsc@golang.org>
Tue, 25 Nov 2008 17:22:58 +0000 (09:22 -0800)
R=r
DELTA=150  (147 added, 0 deleted, 3 changed)
OCL=19968
CL=19977

src/lib/math/all_test.go
src/lib/math/asin.go
src/lib/time/time_test.go

index 8fa334c3509584bfc88d9b3060e9ebfdbf93a05f..ddcb1e3ac7539fb4f8991d60f849728f34cfdb76 100644 (file)
@@ -2,8 +2,6 @@
 // Use of this source code is governed by a BSD-style
 // license that can be found in the LICENSE file.
 
-// $G $F.go && $L $F.$A && (./$A.out || echo BUG: math fails)
-
 package math
 
 import (
index 91875d35f8dc4616fcaa88b143e71db2179fcf6c..effaba85e75b3fa98847595425ca2f78d1425b52 100644 (file)
@@ -46,7 +46,7 @@ export func Asin(arg float64) float64 {
 }
 
 export func Acos(arg float64) float64 {
-       if(arg > 1 || arg < -1) {
+       if arg > 1 || arg < -1 {
                return sys.NaN();
        }
        return pio2 - Asin(arg);
index f771ec03cb610e2aff16b0b88de78a93607692bc..d54dfd0217568c4441b25f9c0a4de02d86e7948f 100644 (file)
@@ -2,8 +2,6 @@
 // Use of this source code is governed by a BSD-style
 // license that can be found in the LICENSE file.
 
-// $G $F.go && $L $F.$A && ./$A.out
-
 package time
 
 import (