From 8bc23a30a54b6376df3603eaa3df299c9fc2cb1a Mon Sep 17 00:00:00 2001 From: Edward Brey Date: Wed, 21 Jul 2021 12:56:26 -0500 Subject: [PATCH] Indicate attaching debugger (vs launching) (#27377) The prior configuration name indicating that it launched the application. Really, it just attaches to an already running application, which the new name indicates. --- docs/advanced-features/debugging.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/advanced-features/debugging.md b/docs/advanced-features/debugging.md index 3e195e012ed22..d400d334367db 100644 --- a/docs/advanced-features/debugging.md +++ b/docs/advanced-features/debugging.md @@ -55,7 +55,7 @@ Create a file named `.vscode/launch.json` at the root of your project with this { "type": "node", "request": "attach", - "name": "Launch Program", + "name": "Attach to application", "skipFiles": ["/**"], "port": 9229 }