From b3890a15b255760865f1601779ed280e3737e935 Mon Sep 17 00:00:00 2001 From: Lucas-Melo0 Date: Mon, 1 Apr 2024 20:26:22 -0300 Subject: [PATCH] chore: add comments explaining if exercise --- exercises/if/if2/main_test.go | 3 +++ 1 file changed, 3 insertions(+) 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 {