Skip to content

Commit b80899a

Browse files
committed
chore: replaced issue text with semantic headings
1 parent 5f081e0 commit b80899a

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

api/src/revise/revise.prompts.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,12 +40,12 @@ export function buildRevisePrompt(ctx: RevisePromptContext): string {
4040
const issueSections: string[] = [];
4141

4242
if (ctx.latestIssuesText) {
43-
issueSections.push(`Issues from the latest review:\n${ctx.latestIssuesText}`);
43+
issueSections.push(`## Issues from the latest review\n\n${ctx.latestIssuesText}`);
4444
}
4545

4646
if (ctx.priorIssuesText) {
4747
issueSections.push(
48-
`Issues from the prior review pass (the reviewer may have overlooked some when updating their list — verify whether each is still present before skipping it):\n${ctx.priorIssuesText}`,
48+
`## Issues from the prior review pass\n\nThe reviewer may have overlooked some when updating their list — verify whether each is still present before skipping it.\n\n${ctx.priorIssuesText}`,
4949
);
5050
}
5151

0 commit comments

Comments
 (0)