Skip to content

Commit 98515ad

Browse files
committed
Fixed typo in variable name.
1 parent 3401153 commit 98515ad

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/PowerShellEditorServices.Protocol/Server/DebugAdapter.cs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,8 +76,9 @@ protected Task LaunchScript(RequestContext<object> requestContext)
7676
// If this is a run without debugging session, disable all breakpoints.
7777
if (this.noDebug)
7878
{
79-
Task diableBreakpoints = this.editorSession.DebugService.DisableAllBreakpoints();
80-
Task.WhenAll(diableBreakpoints);
79+
Task disableBreakpointsTask =
80+
this.editorSession.DebugService.DisableAllBreakpoints();
81+
Task.WhenAll(disableBreakpointsTask);
8182
}
8283

8384
return editorSession.PowerShellContext

0 commit comments

Comments
 (0)