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');