minor fix to code style

This commit is contained in:
Anmol3299
2020-05-30 01:57:16 +05:30
parent 1f55da9444
commit 517f71a2dd

View File

@@ -93,7 +93,7 @@ class Trie {
public:
// constructor to initialise the root of the trie.
Trie() : m_root(std::make_shared<TrieNode>()){};
Trie() : m_root(std::make_shared<TrieNode>()) {}
/**
* Insert a word into the trie.