diff --git a/examples/goroutines/goroutines.go b/examples/goroutines/goroutines.go index d5ee5af..bdf90df 100644 --- a/examples/goroutines/goroutines.go +++ b/examples/goroutines/goroutines.go @@ -28,7 +28,7 @@ func main() { fmt.Println(msg) }("going") - // Our two goroutines are running asynchronously in + // Our two functions 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.