Skip to content

Commit 057ff4c

Browse files
update wording
1 parent b40c3e7 commit 057ff4c

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

lldb/tools/lldb-dap/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@
8282
"items": {
8383
"type": "string"
8484
},
85-
"description": "The arguments provided to the lldb-dap process."
85+
"description": "The list of additional arguments used to launch the debug adapter executable."
8686
},
8787
"lldb-dap.log-path": {
8888
"scope": "resource",
@@ -176,7 +176,7 @@
176176
"items": {
177177
"type": "string"
178178
},
179-
"markdownDescription": "The list of arguments used to launch the debug adapter executable."
179+
"markdownDescription": "The list of additional arguments used to launch the debug adapter executable."
180180
},
181181
"program": {
182182
"type": "string",
@@ -373,7 +373,7 @@
373373
"items": {
374374
"type": "string"
375375
},
376-
"markdownDescription": "The list of arguments used to launch the debug adapter executable."
376+
"markdownDescription": "The list of additional arguments used to launch the debug adapter executable."
377377
},
378378
"program": {
379379
"type": "string",

lldb/tools/lldb-dap/src-ts/debug-adapter-factory.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ export class LLDBDapDescriptorFactory
210210
const message =
211211
path !== undefined
212212
? `Debug adapter path: ${path} is not a valid file`
213-
: "Unable to find the LLDB debug adapter executable.";
213+
: "Unable to find the path to the LLDB debug adapter executable.";
214214
const openSettingsAction = "Open Settings";
215215
const callbackValue = await vscode.window.showErrorMessage(
216216
message,

0 commit comments

Comments
 (0)