Fix comment
This commit is contained in:
@ -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)
|
||||||
|
Reference in New Issue
Block a user