We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 695e799 commit 7434901Copy full SHA for 7434901
12-switch/exercises/02-richter-scale-2/main.go
@@ -60,7 +60,7 @@ package main
60
// major's richter scale is 7 - 7.9
61
//
62
// go run main.go great
63
-// great's richter scale is 8 - 8.9
+// great's richter scale is 8 - 9.9
64
65
// go run main.go massive
66
// massive's richter scale is 10+
12-switch/exercises/02-richter-scale-2/solution/main.go
@@ -40,7 +40,7 @@ func main() {
40
case "major":
41
richter = "7 - 7.9"
42
case "great":
43
- richter = "8 - 8.9"
+ richter = "8 - 9.9"
44
case "massive":
45
richter = "10+"
46
default:
0 commit comments