File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
packages/cursorless-vscode/src Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff 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 ) ;
You can’t perform that action at this time.
0 commit comments