Skip to content

Commit 07fedc4

Browse files
authored
Apply suggestions from code review
1 parent 0d0981b commit 07fedc4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

packages/cursorless-vscode/src/migrateSnippets.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -165,14 +165,14 @@ async function openResultDocument(
165165
`From: ${sourceDirectory}`,
166166
`To: ${targetDirectory}`,
167167
"",
168-
`## Migrated ${migratedKeys.length} snippet files`,
168+
`## Migrated ${migratedKeys.length} snippet files:`,
169169
...migratedKeys.map((key) => `- ${key} -> ${result.migrated[key]}`),
170170
"",
171171
];
172172

173173
if (migratedPartiallyKeys.length > 0) {
174174
content.push(
175-
`## Migrated ${migratedPartiallyKeys.length} snippet files partially`,
175+
`## Migrated ${migratedPartiallyKeys.length} snippet files partially:`,
176176
skipMessage,
177177
...migratedPartiallyKeys.map(
178178
(key) => `- ${key} -> ${result.migratedPartially[key]}`,
@@ -182,7 +182,7 @@ async function openResultDocument(
182182

183183
if (result.skipped.length > 0) {
184184
content.push(
185-
`## Skipped ${result.skipped.length} snippet files`,
185+
`## Skipped ${result.skipped.length} snippet files:`,
186186
skipMessage,
187187
...result.skipped.map((key) => `- ${key}`),
188188
);

0 commit comments

Comments
 (0)