Update examples/channel-synchronization/channel-synchronization.go

Co-Authored-By: Mark McGranaghan <mmcgrana@gmail.com>
This commit is contained in:
Eli Bendersky 2019-05-30 05:53:54 -07:00 committed by GitHub
parent 43ff608b7e
commit 705f713db2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2,7 +2,7 @@
// across goroutines. Here's an example of using a // across goroutines. Here's an example of using a
// blocking receive to wait for a goroutine to finish. // blocking receive to wait for a goroutine to finish.
// When waiting for multiple goroutines to finish, // When waiting for multiple goroutines to finish,
// you may prefer to [use a WaitGroup](waiting-for-goroutines-to-finish). // you may prefer to use a [WaitGroup](waiting-for-goroutines-to-finish).
package main package main