From 2851490b3eeefe1c0b12fee42caa8a71b994166a Mon Sep 17 00:00:00 2001 From: Henrik Hautakoski Date: Fri, 20 Mar 2020 13:07:24 +0100 Subject: [PATCH] include/eoskeygen/core/dictionary.h: improved documentation. --- include/eoskeygen/core/dictionary.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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.