Skip to content

Commit

Permalink
Fix breaking change
Browse files Browse the repository at this point in the history
  • Loading branch information
halyD committed Jul 12, 2023
1 parent 564432a commit 5f78589
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion foobar/foobar.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ func Sequence(length int) ([]string, error) {
for i := range seq {
n := i + 1
switch {
case n%3 == 0 && n%7 == 0:
case n%3 == 0 && n%5 == 0:
seq[i] = "foobar"
case n%5 == 0:
seq[i] = "bar"
Expand Down

0 comments on commit 5f78589

Please sign in to comment.