diff --git a/include/eoskeygen/core/dictionary.h b/include/eoskeygen/core/dictionary.h index 903b3a5..335ca89 100644 --- a/include/eoskeygen/core/dictionary.h +++ b/include/eoskeygen/core/dictionary.h @@ -45,12 +45,13 @@ public : // Load words from file. bool loadFromFile(const std::string& filename); - // Add a word + // Add a word to the dictionary. void add(const std::string& word); // Add words from another dictionary. void add(const Dictionary& dictionary); + // Clear all words from the dictionary. void clear(); // Returns true if word exists in the dictionary.