Fix a typo in the exercise(Richter Scale #2)

This commit is contained in:
Artem Panasenko
2021-09-23 16:15:28 +03:00
committed by İnanç Gümüş
parent 695e7996f5
commit 7434901422
2 changed files with 2 additions and 2 deletions

View File

@ -60,7 +60,7 @@ package main
// major's richter scale is 7 - 7.9
//
// go run main.go great
// great's richter scale is 8 - 8.9
// great's richter scale is 8 - 9.9
//
// go run main.go massive
// massive's richter scale is 10+

View File

@ -40,7 +40,7 @@ func main() {
case "major":
richter = "7 - 7.9"
case "great":
richter = "8 - 8.9"
richter = "8 - 9.9"
case "massive":
richter = "10+"
default: