From 5d7e245bfe29d57bb9bc280859d3b84b85f4b3f8 Mon Sep 17 00:00:00 2001 From: "anhhh.11" Date: Mon, 25 May 2020 22:39:09 +0700 Subject: [PATCH] Fix comment --- 10-constants/04-iota/04-blank-identifier/02/main.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/10-constants/04-iota/04-blank-identifier/02/main.go b/10-constants/04-iota/04-blank-identifier/02/main.go index 28adc33..ffd5f61 100644 --- a/10-constants/04-iota/04-blank-identifier/02/main.go +++ b/10-constants/04-iota/04-blank-identifier/02/main.go @@ -13,8 +13,8 @@ import "fmt" func main() { const ( EST = -(5 + iota) // CORRECT: -5 - MST // INCORRECT: -6 - PST // INCORRECT: -7 + MST // CORRECT: -6 + PST // CORRECT: -7 ) fmt.Println(EST, MST, PST)