Skip to content

Commit 4b27473

Browse files
Update CheckVowels.java
fix: correct class description in CheckVowels.java
1 parent 35b94ab commit 4b27473

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

src/main/java/com/thealgorithms/strings/CheckVowels.java

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,7 @@
33
import java.util.Set;
44

55
/**
6-
* Vowel Count is a system whereby character strings are placed in order based
7-
* on the position of the characters in the conventional ordering of an
8-
* alphabet. Wikipedia: https://en.wikipedia.org/wiki/Alphabetical_order
6+
* Utility class to check whether a given string contains any vowels.
97
*/
108
public final class CheckVowels {
119
private static final Set<Character> VOWELS = Set.of('a', 'e', 'i', 'o', 'u');

0 commit comments

Comments
 (0)