From 36352be54c08ac3f27a6b53187b9a59c7f089660 Mon Sep 17 00:00:00 2001 From: Mark McGranaghan Date: Thu, 1 Feb 2018 17:26:11 -0500 Subject: [PATCH] Can now shorten this --- 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 36a7207..eed6ee2 100644 --- a/examples/goroutines/goroutines.go +++ b/examples/goroutines/goroutines.go @@ -30,7 +30,7 @@ func main() { // 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 + // to here. This `Scanln` requires we press a key // before the program exits. fmt.Scanln() fmt.Println("done")