]> Cypherpunks repositories - gostls13.git/commitdiff
runtime: gofmt proc_test.go
authorsivchari <shibuuuu5@gmail.com>
Thu, 6 May 2021 07:40:22 +0000 (07:40 +0000)
committerIan Lance Taylor <iant@golang.org>
Thu, 6 May 2021 12:33:02 +0000 (12:33 +0000)
Change-Id: I09a2be64e96fe85d84560728814af74b234d7210
GitHub-Last-Rev: bc881ea0022326fcc35e0356a79634fde00efd2a
GitHub-Pull-Request: golang/go#45929
Reviewed-on: https://go-review.googlesource.com/c/go/+/316409
Reviewed-by: Emmanuel Odeke <emmanuel@orijtech.com>
Run-TryBot: Emmanuel Odeke <emmanuel@orijtech.com>
TryBot-Result: Go Bot <gobot@golang.org>
Trust: Michael Pratt <mpratt@google.com>

src/runtime/proc_test.go

index 01152dff76c74e7f971db06cdacf572089377740..53cafe8907fc0962f5b13cd3df15fa1dbfb2dc88 100644 (file)
@@ -734,7 +734,7 @@ func BenchmarkCreateGoroutinesSingle(b *testing.B) {
        var wg sync.WaitGroup
        wg.Add(b.N)
        for i := 0; i < b.N; i++ {
-               go func(){
+               go func() {
                        wg.Done()
                }()
        }