From 4b27473236b311699bf00a09f8281485b521c6ab Mon Sep 17 00:00:00 2001 From: Abdul-Rehman-svg Date: Sat, 2 May 2026 12:52:11 +0500 Subject: [PATCH] Update CheckVowels.java fix: correct class description in CheckVowels.java --- src/main/java/com/thealgorithms/strings/CheckVowels.java | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/main/java/com/thealgorithms/strings/CheckVowels.java b/src/main/java/com/thealgorithms/strings/CheckVowels.java index 21b536b5c7d5..c2b59b6b4e2a 100644 --- a/src/main/java/com/thealgorithms/strings/CheckVowels.java +++ b/src/main/java/com/thealgorithms/strings/CheckVowels.java @@ -3,9 +3,7 @@ import java.util.Set; /** - * Vowel Count is a system whereby character strings are placed in order based - * on the position of the characters in the conventional ordering of an - * alphabet. Wikipedia: https://en.wikipedia.org/wiki/Alphabetical_order + * Utility class to check whether a given string contains any vowels. */ public final class CheckVowels { private static final Set VOWELS = Set.of('a', 'e', 'i', 'o', 'u');