commit | 40621d5c0d3f9fc222089967ab1aec44e94b5f78 | [log] [tgz] |
---|---|---|
author | Robert Griesemer <gri@golang.org> | Mon Nov 09 12:07:39 2009 -0800 |
committer | Robert Griesemer <gri@golang.org> | Mon Nov 09 12:07:39 2009 -0800 |
tree | aab097e5a2fcb1b6df8781a044ebfcb1b10a18e5 | |
parent | 18ccbc69f8ba71a396acba50ecfe5a591f687c78 [diff] [blame] |
remove semis after statements in one-statement statement lists R=rsc, r http://go/go-review/1025029
diff --git a/src/pkg/math/fabs.go b/src/pkg/math/fabs.go index 254756c..752133e 100644 --- a/src/pkg/math/fabs.go +++ b/src/pkg/math/fabs.go
@@ -7,7 +7,7 @@ // Fabs returns the absolute value of x. func Fabs(x float64) float64 { if x < 0 { - return -x; + return -x } return x; }