Fix a typo in the exercise(Richter Scale #2)
This commit is contained in:
committed by
İnanç Gümüş
parent
695e7996f5
commit
7434901422
@ -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+
|
||||
|
@ -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:
|
||||
|
Reference in New Issue
Block a user