aboutsummaryrefslogtreecommitdiffstats
path: root/exercises
diff options
context:
space:
mode:
Diffstat (limited to 'exercises')
-rw-r--r--exercises/if/if2/main_test.go3
1 files changed, 3 insertions, 0 deletions
diff --git a/exercises/if/if2/main_test.go b/exercises/if/if2/main_test.go
index 718c509..75c1cf7 100644
--- a/exercises/if/if2/main_test.go
+++ b/exercises/if/if2/main_test.go
@@ -7,6 +7,9 @@ package main_test
import "testing"
func fooIfFizz(fizzish string) string {
+ // When the input is fizz return foo
+ // When the input is fuzz return bar
+ // When the input is neither fizz or fuzz return baz
if fizzish == "fizz" {
return "foo"
} else {