diff --git a/joint_teapot/utils/joj3.py b/joint_teapot/utils/joj3.py
index 9245c0c..df6fcd1 100644
--- a/joint_teapot/utils/joj3.py
+++ b/joint_teapot/utils/joj3.py
@@ -203,11 +203,9 @@ def generate_title_and_comment(
         comment += "\n"
         for i, result in enumerate(stage["results"]):
             comment += f"Case {i} - Score: {result['score']}\n"
-            comment += "\n\n"
             if result["comment"].strip() != "":
-                comment += f"{result['comment']}\n"
+                comment += f"\n\n{result['comment']}\n \n\n"
             total_score += result["score"]
-            comment += " \n\n"
         comment += "\n"
     title = f"JOJ3 Result for {exercise_name} - Score: {total_score}"
     return title, comment