diff --git a/11-if/exercises/09-days-in-month/main.go b/11-if/exercises/09-days-in-month/main.go index aee2a1c..1c35c20 100644 --- a/11-if/exercises/09-days-in-month/main.go +++ b/11-if/exercises/09-days-in-month/main.go @@ -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. //