From 40f19ac940ee27dfca565ecbf12222876bf46264 Mon Sep 17 00:00:00 2001 From: Paul Waldmann Date: Thu, 13 Dec 2018 21:37:21 +0800 Subject: [PATCH] fix: move 'january' into correct solution in if statement exercises --- 11-if/exercises/09-days-in-month/main.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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. //