Fix comment

This commit is contained in:
anhhh.11
2020-05-25 22:39:09 +07:00
committed by Inanc Gumus
parent 65e854c4ae
commit 5d7e245bfe

View File

@ -13,8 +13,8 @@ import "fmt"
func main() { func main() {
const ( const (
EST = -(5 + iota) // CORRECT: -5 EST = -(5 + iota) // CORRECT: -5
MST // INCORRECT: -6 MST // CORRECT: -6
PST // INCORRECT: -7 PST // CORRECT: -7
) )
fmt.Println(EST, MST, PST) fmt.Println(EST, MST, PST)