From 999fd302dd25650ab4baf20b8c3f288980b2b2f2 Mon Sep 17 00:00:00 2001 From: Krishna Vedala <7001608+kvedala@users.noreply.github.com> Date: Thu, 27 Aug 2020 11:32:22 -0400 Subject: [PATCH] fix true spelling --- data_structures/trie_tree.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) {