From 0f7cdc3d656a8b66e993f18000dae12ada309503 Mon Sep 17 00:00:00 2001 From: Jacques Fuentes Date: Wed, 27 Mar 2013 12:08:33 -0300 Subject: [PATCH] Fixed minor doc typo for mutexes --- 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 3cc6acc..e0b68d0 100644 --- a/examples/mutexes/mutexes.go +++ b/examples/mutexes/mutexes.go @@ -75,7 +75,7 @@ func main() { }() } - // Let the 110 goroutines work on the `state` and + // Let the 10 goroutines work on the `state` and // `mutex` for a second. time.Sleep(time.Second)