Skip to content

Commit 13e86d4

Browse files
committed
Remove unnecessary space in call operator
1 parent ad6fde2 commit 13e86d4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/PowerShellEditorServices/Services/DebugAdapter/Handlers/ConfigurationDoneHandler.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ private static PSCommand BuildPSCommandFromArguments(string command, IReadOnlyLi
159159
// HACK: We use AddScript instead of AddArgument/AddParameter to reuse Powershell parameter binding logic.
160160
// We quote the command parameter so that expressions can still be used in the arguments.
161161
var sb = new StringBuilder()
162-
.Append("& ")
162+
.Append('&')
163163
.Append('"')
164164
.Append(command)
165165
.Append('"');

0 commit comments

Comments
 (0)