From c7dd69349b4bb0966c7744c15419be3c703a940c Mon Sep 17 00:00:00 2001 From: Eli Bendersky Date: Thu, 30 May 2019 05:54:32 -0700 Subject: [PATCH] Update examples/waitgroup/waitgroup.go Co-Authored-By: Mark McGranaghan --- examples/waitgroup/waitgroup.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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() }