diff --git a/C++/Data Structure/Trie.cpp b/C++/Data Structure/Trie.cpp index 65a9fd176..9f83ff1db 100644 --- a/C++/Data Structure/Trie.cpp +++ b/C++/Data Structure/Trie.cpp @@ -72,11 +72,11 @@ class Trie { }; int main(){ - /** - * Your Trie object will be instantiated and called as such: - * Trie* obj = new Trie(); - * obj->insert(word); - * bool param_2 = obj->search(word); - * bool param_3 = obj->startsWith(prefix); - */ + +// Your Trie object will be instantiated and called as such: + Trie* obj = new Trie(); + obj->insert(word); + bool param_2 = obj->search(word); + bool param_3 = obj->startsWith(prefix); + }