From a6cc3ef8cb055c55c5c95d6e4a1049ee29706d10 Mon Sep 17 00:00:00 2001 From: ncook-hxgn <36889813+ncook-hxgn@users.noreply.github.com> Date: Tue, 9 Aug 2022 17:28:57 +0100 Subject: [PATCH] fixes #4119 Removes extraneous `)` from the do-while powershell snippet --- snippets/PowerShell.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/snippets/PowerShell.json b/snippets/PowerShell.json index 90cf364a9d..122d73b108 100644 --- a/snippets/PowerShell.json +++ b/snippets/PowerShell.json @@ -94,7 +94,7 @@ "do {", "\t${0:$TM_SELECTED_TEXT}", "} while (", - "\t${1:<# Condition that stops the loop if it returns false #>})", + "\t${1:<# Condition that stops the loop if it returns false #>}", ")" ] },