Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'editors/code/src/snippets.ts')
-rw-r--r--editors/code/src/snippets.ts4
1 files changed, 1 insertions, 3 deletions
diff --git a/editors/code/src/snippets.ts b/editors/code/src/snippets.ts
index a469a9cd1f..e3f43a8067 100644
--- a/editors/code/src/snippets.ts
+++ b/editors/code/src/snippets.ts
@@ -24,9 +24,7 @@ export async function applySnippetWorkspaceEdit(
for (const indel of edits) {
assert(
!(indel instanceof vscode.SnippetTextEdit),
- `bad ws edit: snippet received with multiple edits: ${JSON.stringify(
- edit,
- )}`,
+ `bad ws edit: snippet received with multiple edits: ${JSON.stringify(edit)}`,
);
builder.replace(indel.range, indel.newText);
}