Ran code though formatter.

This commit is contained in:
markhughes248 2020-02-06 07:16:55 -05:00 committed by GitHub
parent 3b632be7a5
commit e9daebc92f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -49,6 +49,6 @@ func main() {
// finished. An alternative way to wait for multiple // finished. An alternative way to wait for multiple
// goroutines is to use a [WaitGroup](waitgroups). // goroutines is to use a [WaitGroup](waitgroups).
for a := 1; a <= numJobs; a++ { for a := 1; a <= numJobs; a++ {
fmt.Println( "results", <- results ) fmt.Println("result", <-results)
} }
} }