fix: move 'january' into correct solution in if statement exercises

This commit is contained in:
Paul Waldmann
2018-12-13 21:37:21 +08:00
committed by Inanc Gumus
parent 83881a604c
commit 40f19ac940

View File

@ -37,12 +37,12 @@ package main
// go run main.go sheep
// "sheep" is not a month.
//
// go run main.go january
// "january" has 31 days.
//
// -----------------------------------------
// Your solution should handle the leap years
// -----------------------------------------
// go run main.go january
// "january" has 31 days.
//
// go run main.go february
// "february" has 28 days.
//