From 32f268e8e0a880a39a88cec45976df2acf659dc2 Mon Sep 17 00:00:00 2001 From: Mark McGranaghan Date: Sat, 10 Jan 2015 14:39:20 -0800 Subject: [PATCH] Tweak wording to "function calls" It's technically the same function being called and therefore run twice. Ref #90 --- examples/goroutines/goroutines.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/goroutines/goroutines.go b/examples/goroutines/goroutines.go index bdf90df..88329e6 100644 --- a/examples/goroutines/goroutines.go +++ b/examples/goroutines/goroutines.go @@ -28,7 +28,7 @@ func main() { fmt.Println(msg) }("going") - // Our two functions are running asynchronously in + // Our two function calls are running asynchronously in // separate goroutines now, so execution falls through // to here. This `Scanln` code requires we press a key // before the program exits.