From dddf96b67ae3fbbac8eb5f998a214cd954968574 Mon Sep 17 00:00:00 2001 From: Inanc Gumus Date: Wed, 13 Feb 2019 12:06:17 +0300 Subject: [PATCH] update: shy semicolons exercise --- .../exercises/01-shy-semicolons/solution/main.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/04-statements-expressions-comments/exercises/01-shy-semicolons/solution/main.go b/04-statements-expressions-comments/exercises/01-shy-semicolons/solution/main.go index dd7a97d..ceee879 100644 --- a/04-statements-expressions-comments/exercises/01-shy-semicolons/solution/main.go +++ b/04-statements-expressions-comments/exercises/01-shy-semicolons/solution/main.go @@ -10,7 +10,8 @@ package main func main() { // Uncomment the line of code below; then save the file. // - // You will see that Go will fix it automatically. + // You will see that Gofmt tool will format your code automatically. + // https://golang.org/cmd/gofmt/ // // This is because, for Go, it doesn't matter whether // you use semicolons between the statements or not.