Skip to content

Commit 8821617

Browse files
committed
Minor tweak
1 parent a2c22a0 commit 8821617

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/logger.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ export async function error(error: Error) {
5656
}
5757

5858
const text = `
59-
### [${error.name}]
59+
## [${error.name}]
6060
6161
${codeBlock(inspect(error))}
6262
`;

src/report.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ function getTitle({
2222
.map((prettierVersion) => getPrettierVersionDescription(prettierVersion))
2323
.join(" VS ");
2424

25-
return `## **${text}**`;
25+
return `# **${text}**`;
2626
}
2727

2828
const LONG_DIFF_THRESHOLD_IN_LINES = 50;
@@ -61,7 +61,7 @@ export function getReport({
6161
title,
6262
reports: results.map(({ repository, text }, index) => {
6363
const shortHash = repository.commit.slice(0, 7);
64-
const head = `#### [${index + 1}/${results.length}] [${repository.repository}@${shortHash}](https://github.com/${repository.repository}/tree/${repository.commit})`;
64+
const head = `## [${index + 1}/${results.length}] [${repository.repository}@${shortHash}](https://github.com/${repository.repository}/tree/${repository.commit})`;
6565
return {
6666
head,
6767
body: text,

0 commit comments

Comments
 (0)