Skip to content
Merged
Changes from 1 commit
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
Next Next commit
Fix typos in src/main/java/com/thealgorithms/strings/Pangram.java
  • Loading branch information
khanhkhanhlele committed Nov 5, 2025
commit e33fd5e97eb80c1833fa48398a83fbb993164139
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