From f3bea4e00262b4fc40082a87b05cf4f7b22f62c2 Mon Sep 17 00:00:00 2001 From: Brady James Garvin <bgarvin@cse.unl.edu> Date: Tue, 12 Feb 2019 08:49:31 -0600 Subject: [PATCH] Reworded menu options for 2019 assignment. --- sentiment.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sentiment.py b/sentiment.py index 4ad6fcb..736cb08 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' -- GitLab