diff --git a/examples/waitgroup/waitgroup.go b/examples/waitgroup/waitgroup.go index a21a499..a1ad603 100644 --- a/examples/waitgroup/waitgroup.go +++ b/examples/waitgroup/waitgroup.go @@ -19,7 +19,7 @@ func worker(id int, wg *sync.WaitGroup) { time.Sleep(time.Second) fmt.Printf("Worker %d done\n", id) - // Notify the WaitGroup that we're done. + // Notify the WaitGroup that this worker is done. wg.Done() }