Skip to content

Commit 855f69a

Browse files
committed
Shorten error message based on juneb feedback.
1 parent 94d20b5 commit 855f69a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/features/DebugSession.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ export class DebugSessionFeature implements IFeature {
4848
config.script = currentDocument.uri.toString();
4949
}
5050
else {
51-
let msg = "In order to debug '" + currentDocument.fileName +
51+
let msg = "To debug '" + currentDocument.fileName +
5252
"', change the document's language mode to PowerShell or save the file with a PowerShell extension.";
5353
vscode.window.showErrorMessage(msg);
5454
return;

0 commit comments

Comments
 (0)