diff --git a/examples/goroutines/goroutines.sh b/examples/goroutines/goroutines.sh index 9f5672d..2dcf3bb 100644 --- a/examples/goroutines/goroutines.sh +++ b/examples/goroutines/goroutines.sh @@ -1,6 +1,6 @@ # When we run this program, we see the output of the # blocking call first, then the interleaved output of the -# two gouroutines. This interleaving reflects the +# two goroutines. This interleaving reflects the # goroutines being run concurrently by the Go runtime. $ go run goroutines.go direct : 0 diff --git a/public/goroutines b/public/goroutines index b1af6a0..11e301d 100644 --- a/public/goroutines +++ b/public/goroutines @@ -158,7 +158,7 @@ before the program exits.

When we run this program, we see the output of the blocking call first, then the interleaved output of the -two gouroutines. This interleaving reflects the +two goroutines. This interleaving reflects the goroutines being run concurrently by the Go runtime.