diff --git a/data_structures/trie_tree.cpp b/data_structures/trie_tree.cpp index bd2cbed49..3cdf97ae2 100644 --- a/data_structures/trie_tree.cpp +++ b/data_structures/trie_tree.cpp @@ -83,7 +83,7 @@ class trie { /** search a string exists inside the trie * @param str string to search for * @param index start index to search from - * @returns `tre` if found + * @returns `true` if found * @returns `false` if not found */ bool search(const std::string& str, int index) {