Skip to content

Commit 78c4cc1

Browse files
Revert change to generation of blank lines
1 parent ecfa701 commit 78c4cc1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

extensions/ql-vscode/src/variant-analysis/markdown-generation.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -285,7 +285,7 @@ function generateMarkdownForPathResults(
285285
);
286286
const indentation = " ".repeat(listNumber.toString().length + 2);
287287
pathLines.push(
288-
...codeSnippet.map((line) => indentation + line.trimEnd()),
288+
...codeSnippet.map((line) => (indentation + line).trimEnd()),
289289
);
290290
}
291291
}

0 commit comments

Comments
 (0)