Tweak wording to "function calls"

It's technically the same function being called and therefore run
twice.

Ref #90
This commit is contained in:
Mark McGranaghan 2015-01-10 14:39:20 -08:00
parent da84256f8f
commit 32f268e8e0

View File

@ -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.