From 0214aa87e6853af775facaf993285934a18c9583 Mon Sep 17 00:00:00 2001 From: Sam Date: Thu, 19 Sep 2024 13:56:33 +0300 Subject: [PATCH] Update fizzbuzz-match.md Fix 404 --- exercise-book/src/fizzbuzz-match.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exercise-book/src/fizzbuzz-match.md b/exercise-book/src/fizzbuzz-match.md index dadb436..53d06c9 100644 --- a/exercise-book/src/fizzbuzz-match.md +++ b/exercise-book/src/fizzbuzz-match.md @@ -17,7 +17,7 @@ For completing this exercise you need to have Rewrite the body of `fn fizzbuzz()` so the different cases are not distinguished with `if` statements, but with pattern matching of a tuple containing the remainders. -If you need it, we have provided a [complete solution](../../exercise-solutions/fizzbuzz/src/examples/fizzbuzz-match.rs) for this exercise. +If you need it, we have provided a [complete solution](../../exercise-solutions/fizzbuzz/src/examples/fizzbuzz_match.rs) for this exercise. ## Knowledge