Fix comment

This commit is contained in:
anhhh.11
2020-06-16 09:49:31 +03:00
committed by Inanc Gumus
parent 65e854c4ae
commit 5d7e245bfe
@@ -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)