We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ac01cc3 commit 0557e2fCopy full SHA for 0557e2f
app/pages/learn/01_tutorial/03_getting-to-know-the-language/04_classes_objects/01_enums.md
@@ -75,7 +75,7 @@ With [switch expressions](id:lang.classes-objects.switch-expression),
75
the compiler can check whether all values of the enum are handled.
76
If any possible value is missing in a switch expression, there will be a compiler error.
77
This is referred to as exhaustiveness checking and can also be achieved with regular classes
78
-through [sealed classes](https://openjdk.org/jeps/409) and [patternmatching](/learn/pattern-matching/#switch).
+through [sealed classes](https://openjdk.org/jeps/409) and [pattern matching](/learn/pattern-matching/#switch).
79
80
```java
81
DayOfWeek someDay = DayOfWeek.FRIDAY;
0 commit comments