Skip to content

Commit 08ee26f

Browse files
author
Lê Nam Khánh
authored
chore: fix typos in src/main/java/com/thealgorithms/others/Implementing_auto_completing_features_using_trie.java (#7041)
Fix typos in src/main/java/com/thealgorithms/others/Implementing_auto_completing_features_using_trie.java
1 parent a3717f0 commit 08ee26f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/com/thealgorithms/others/Implementing_auto_completing_features_using_trie.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ static void suggestionsRec(TrieNode root, String currPrefix) {
9797
}
9898
}
9999

100-
// Fucntion to print suggestions for
100+
// Function to print suggestions for
101101
// given query prefix.
102102
static int printAutoSuggestions(TrieNode root, final String query) {
103103
TrieNode pCrawl = root;

0 commit comments

Comments
 (0)