chore(internal/stage): extra newlines to split different parser comments
All checks were successful
submodules sync / sync (push) Successful in 1m0s
build / build (push) Successful in 2m40s
build / trigger-build-image (push) Successful in 8s

This commit is contained in:
张泊明518370910136 2025-07-02 13:07:05 -04:00
parent a22a48ec3d
commit 787aa0e0e8
GPG Key ID: D47306D7062CDA9D

View File

@ -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"
}
}
}