mirror of
https://github.com/TheAlgorithms/Java.git
synced 2025-12-19 07:00:35 +08:00
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
This commit is contained in:
@@ -97,7 +97,7 @@ class Trieac {
|
||||
}
|
||||
}
|
||||
|
||||
// Fucntion to print suggestions for
|
||||
// Function to print suggestions for
|
||||
// given query prefix.
|
||||
static int printAutoSuggestions(TrieNode root, final String query) {
|
||||
TrieNode pCrawl = root;
|
||||
|
||||
Reference in New Issue
Block a user