Unnamed repository; edit this file 'description' to name the repository.
Semicolon
| -rw-r--r-- | editors/code/src/debug.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editors/code/src/debug.ts b/editors/code/src/debug.ts index 3e4446e566..91b07aed01 100644 --- a/editors/code/src/debug.ts +++ b/editors/code/src/debug.ts @@ -195,7 +195,7 @@ function getCCppDebugConfig( cwd: runnable.args.cwd || runnable.args.workspaceRoot || ".", sourceFileMap, environment: Object.entries(env).map(entry => { - return { "name": entry[0], "value": entry[1] } + return { "name": entry[0], "value": entry[1] }; }), // See https://github.com/rust-lang/rust-analyzer/issues/16901#issuecomment-2024486941 osx: { |