From 221e8afaab799771deb4a84eeeb0489fd48930f6 Mon Sep 17 00:00:00 2001 From: Javier Pacareu Date: Mon, 12 Dec 2022 11:07:00 -0300 Subject: [PATCH] Update mutexes.go --- examples/mutexes/mutexes.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/mutexes/mutexes.go b/examples/mutexes/mutexes.go index 9569ba5..5992881 100644 --- a/examples/mutexes/mutexes.go +++ b/examples/mutexes/mutexes.go @@ -56,7 +56,7 @@ func main() { go doIncrement("a", 10000) go doIncrement("b", 10000) - // Wait a for the goroutines to finish + // Wait for the goroutines to finish wg.Wait() fmt.Println(c.counters) }