diff --git a/src/data-structures/trie/Trie.js b/src/data-structures/trie/Trie.js index 39f25820..631ea113 100644 --- a/src/data-structures/trie/Trie.js +++ b/src/data-structures/trie/Trie.js @@ -39,6 +39,8 @@ export default class Trie { } /** + * Check if complete word exists in Trie. + * * @param {string} word * @return {boolean} */