From 67d1aa280d675ca4844269f768aab32e118cfde3 Mon Sep 17 00:00:00 2001 From: Michael Lambert Date: Fri, 18 Oct 2024 00:22:24 -0400 Subject: [PATCH] Fixing switch link (issue 90) --- content/enums/reading/intro-to-enums/_index.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content/enums/reading/intro-to-enums/_index.md b/content/enums/reading/intro-to-enums/_index.md index 355b4d1..cbe4f4e 100644 --- a/content/enums/reading/intro-to-enums/_index.md +++ b/content/enums/reading/intro-to-enums/_index.md @@ -95,8 +95,8 @@ public class DayStatic { ``` To refer to Thursday, you can use the value `DayStatic.THURSDAY`. Recall our -`switch` [example from earlier](#switch-statements). - +`switch` [example from earlier]({{% ref "/control-flow-and-collections/reading/conditionals#switch-statements" %}}). + ```java {linenos=true} import java.util.Scanner;