summaryrefslogtreecommitdiff
path: root/src/pkg/math
diff options
context:
space:
mode:
authorRobert Griesemer <gri@golang.org>2010-02-25 13:47:16 -0800
committerRobert Griesemer <gri@golang.org>2010-02-25 13:47:16 -0800
commit66fe5e95b8cbba8afc73fcc3b05222cd8cf08922 (patch)
tree12d6705bce02b93c585b0fc9cf09f9768680807c /src/pkg/math
parent02001968abac691e0e2591f8ef1fc7a5125c4054 (diff)
downloadgolang-66fe5e95b8cbba8afc73fcc3b05222cd8cf08922.tar.gz
go/printer, gofmt: correct indentation after certain /*-style comments
- applied gofmt to src and misc Note: This fix improved formatting of src/pkg/math/all_test.go but leads to a degradation in src/pkg/exp/4s/xs.go. The latter happened to "work" before accidentally. Fixing the alignment in that case in general will be a separate CL. Fixes issue 628. R=rsc CC=golang-dev http://codereview.appspot.com/223054
Diffstat (limited to 'src/pkg/math')
-rw-r--r--src/pkg/math/all_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pkg/math/all_test.go b/src/pkg/math/all_test.go
index ef4806540..d80f4ee13 100644
--- a/src/pkg/math/all_test.go
+++ b/src/pkg/math/all_test.go
@@ -1205,7 +1205,7 @@ func TestFmin(t *testing.T) {
func TestFmod(t *testing.T) {
for i := 0; i < len(vf); i++ {
if f := Fmod(10, vf[i]); fmod[i] != f { /*!close(fmod[i], f)*/
- t.Errorf("Fmod(10, %g) = %g, want %g\n", vf[i], f, fmod[i])
+ t.Errorf("Fmod(10, %g) = %g, want %g\n", vf[i], f, fmod[i])
}
}
for i := 0; i < len(vffmodSC); i++ {