From a5a26f03ec73330b290f6a6eeb934265133d5918 Mon Sep 17 00:00:00 2001 From: Sriram Date: Sun, 11 Feb 2024 18:09:11 +0530 Subject: [PATCH] -m bug: fixed a typo on Enum name in part 10 section 3 --- data/part-10/3-other-useful-techniques.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/part-10/3-other-useful-techniques.md b/data/part-10/3-other-useful-techniques.md index e8ab2d81b..340995d7d 100644 --- a/data/part-10/3-other-useful-techniques.md +++ b/data/part-10/3-other-useful-techniques.md @@ -891,7 +891,7 @@ The numeric identifier of an enum field value can be found with `ordinal()`. The ```java -public enum Suits { +public enum Suit { DIAMOND, CLUB, HEART, SPADE } ```