diff options
author | Robert Griesemer <gri@golang.org> | 2009-11-04 23:25:29 -0800 |
---|---|---|
committer | Robert Griesemer <gri@golang.org> | 2009-11-04 23:25:29 -0800 |
commit | 60ec557d5f09eaedbae621626b01271236493715 (patch) | |
tree | fdf5f1ef31b99695b9e5079961b5ad09a911973a /src/pkg/sync/mutex_test.go | |
parent | d29d9b8b35622fef8c3eb253b7ad6bb46cbbc6a9 (diff) | |
download | golang-60ec557d5f09eaedbae621626b01271236493715.tar.gz |
gofmt-ify sort, sync
R=rsc
http://go/go-review/1018057
Diffstat (limited to 'src/pkg/sync/mutex_test.go')
-rw-r--r-- | src/pkg/sync/mutex_test.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/pkg/sync/mutex_test.go b/src/pkg/sync/mutex_test.go index d7be79fff..03490af12 100644 --- a/src/pkg/sync/mutex_test.go +++ b/src/pkg/sync/mutex_test.go @@ -7,9 +7,9 @@ package sync_test import ( - "runtime"; - . "sync"; - "testing"; + "runtime"; + . "sync"; + "testing"; ) func HammerSemaphore(s *uint32, cdone chan bool) { |