diff --git a/maap_utils/Job.py b/maap_utils/Job.py
index 9728c831adc2729c4324b741ac9e047f77aaf92e..d304526aad9b7cfa6e7c8a30a7d67b011a71dfd6 100644
--- a/maap_utils/Job.py
+++ b/maap_utils/Job.py
@@ -5,7 +5,7 @@ maap = MAAP(maap_host="api.maap-project.org")
 
 
 class Job:
-    """Represents an individual processing job"""
+    """Handles API interactions for a single job on MAAP"""
 
     def __init__(self, kwargs: Dict):
         self._kwargs = kwargs
diff --git a/maap_utils/JobManager.py b/maap_utils/JobManager.py
index 61377de0a7f1b47f0456d38b5cb3f168bf0ac0df..087b8e186caa7a3dbf5131decbb9a9a89e30904e 100644
--- a/maap_utils/JobManager.py
+++ b/maap_utils/JobManager.py
@@ -186,8 +186,8 @@ class JobManager:
         """Prompt user for interactive resubmission of failed jobs"""
         redo_answer = input(
             "\nResubmit failed jobs? [y/N] "
-            "This will resubmit all jobs that do not have 'Succeeded' status "
-            "and continue monitoring.\n"
+            "This will resubmit all finished jobs that do not have 'Succeeded'"
+            " status and continue monitoring.\n"
         ).strip()
         if redo_answer == "y":
             redo = True