Skip to content

Commit 8a38132

Browse files
committed
chore: readability nit
1 parent 62cf2ce commit 8a38132

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/codeMarker.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2816,7 +2816,7 @@ export class CodeMarker implements vscode.TreeDataProvider<TreeEntry> {
28162816
// Include location section if there's a label or description
28172817
if (location.label !== "" || location.description !== "") {
28182818
locationDescriptions += `\n\n---\n`;
2819-
locationDescriptions += `#### Location ${i + 1}${location.label ? ` ${location.label}` : ""}\n`;
2819+
locationDescriptions += `#### Location ${i + 1} ${location.label ?? ""}\n`;
28202820
if (location.description !== "") {
28212821
locationDescriptions += `${location.description}\n\n`;
28222822
}

0 commit comments

Comments
 (0)