diff --git a/sentiment.py b/sentiment.py index 4ad6fcb0432df9f584fe9eb3142794557e0ac1cc..736cb08b9b8e53b87b77c043e59b44b864e9cf10 100644 --- a/sentiment.py +++ b/sentiment.py @@ -2,8 +2,8 @@ from enum import Enum class MenuOption(Enum): - SHOW_REVIEW = 'Show a review' - SAVE_TOKEN_LIST = 'Save the token list to a file' + SHOW_REVIEWS = 'Show reviews' + CHECK_TOKEN = 'Check if a token is present' SHOW_DOCUMENT_FREQUENCY = 'Show the document frequency for a particular token' SHOW_TOKEN_STATISTICS = 'Show all statistics for a particular token' SHOW_SENTENCE_STATISTICS = 'Show the statistics for a sentence'