From 787aa0e0e8e957c2f548949400a5135cb58dd3cf Mon Sep 17 00:00:00 2001 From: Boming Zhang Date: Wed, 2 Jul 2025 13:07:05 -0400 Subject: [PATCH] chore(internal/stage): extra newlines to split different parser comments --- internal/stage/run.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/internal/stage/run.go b/internal/stage/run.go index a79d032..348c493 100644 --- a/internal/stage/run.go +++ b/internal/stage/run.go @@ -30,7 +30,7 @@ func Run(stages []Stage) ( { Score: 0, Comment: "JOJ3 internal error. " + - "Please contact the administrator.\n", + "Please contact the administrator.\n\n", }, }, ForceQuit: true, @@ -152,7 +152,7 @@ func Run(stages []Stage) ( } else { for i := range len(parserResults) { parserResults[i].Score += tmpParserResults[i].Score - parserResults[i].Comment += tmpParserResults[i].Comment + parserResults[i].Comment += tmpParserResults[i].Comment + "\n\n" } } }