From 546225b989a4b47f5615db69cb9ad62005fd28f8 Mon Sep 17 00:00:00 2001 From: Paul Waldmann Date: Fri, 21 Dec 2018 04:15:54 +0800 Subject: [PATCH] fix: richter scale exercise grammar --- 12-switch/exercises/01-richter-scale/main.go | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/12-switch/exercises/01-richter-scale/main.go b/12-switch/exercises/01-richter-scale/main.go index c097e0a..0589df2 100644 --- a/12-switch/exercises/01-richter-scale/main.go +++ b/12-switch/exercises/01-richter-scale/main.go @@ -25,13 +25,13 @@ package main // MAGNITUDE DESCRIPTION // --------------------------------------------------------- // Less than 2.0 micro -// 2.0 to less than 3.0 very minor -// 3.0 to less than 4.0 minor -// 4.0 to less than 5.0 light -// 5.0 to less than 6.0 moderate -// 6.0 to less than 7.0 strong -// 7.0 to less than 8.0 major -// 8.0 to less than 10.0 great +// 2.0 and less than 3.0 very minor +// 3.0 and less than 4.0 minor +// 4.0 and less than 5.0 light +// 5.0 and less than 6.0 moderate +// 6.0 and less than 7.0 strong +// 7.0 and less than 8.0 major +// 8.0 and less than 10.0 great // 10.0 or more massive // // EXPECTED OUTPUT