Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/main/java/com/thealgorithms/strings/Pangram.java
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ public static boolean isPangram(String s) {
}

/**
* Checks if a String is Pangram or not by checking if each alhpabet is present or not
* Checks if a String is Pangram or not by checking if each alphabet is present or not
*
* @param s The String to check
* @return {@code true} if s is a Pangram, otherwise {@code false}
Expand Down