From ca05e4208456c560ef24becb5521386c1a7662a5 Mon Sep 17 00:00:00 2001 From: Mark McGranaghan Date: Thu, 1 Feb 2018 17:58:40 -0500 Subject: [PATCH 1/2] Fix goroutines spelling --- examples/goroutines/goroutines.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 From f31487b81a12100ab8e0e86e8d9ce2f6443de5b0 Mon Sep 17 00:00:00 2001 From: Mark McGranaghan Date: Thu, 1 Feb 2018 18:00:01 -0500 Subject: [PATCH 2/2] Rebuild for spelling fix --- public/goroutines | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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.