Skip to content

Commit

Permalink
fix(java-letter-occurrence-turkiye-cities): fix typo error for printL…
Browse files Browse the repository at this point in the history
…etterOccurrence method
  • Loading branch information
evrentan committed Sep 12, 2023
1 parent c7eafb5 commit 56de212
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ public class LetterOccurrenceTurkiyeCities {

public static void main(String[] args) throws NoSuchElementException, IOException, InterruptedException {

Utils.printLetterOccurence(new TurkiyeCityServiceImpl().getTurkeyCities());
Utils.printLetterOccurrence(new TurkiyeCityServiceImpl().getTurkeyCities());
}
}
2 changes: 1 addition & 1 deletion java-letter-occurence-turkiye-cities/src/Utils.java
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

public class Utils {

public static void printLetterOccurence(List<String> cities) {
public static void printLetterOccurrence(List<String> cities) {
HashMap<String, Integer> letterOccurrenceMap = new HashMap<>();

for (String city : cities) {
Expand Down

0 comments on commit 56de212

Please sign in to comment.