Skip to content

Commit 48517e3

Browse files
update wording
1 parent 8926756 commit 48517e3

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
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",
@@ -170,7 +170,7 @@
170170
"items": {
171171
"type": "string"
172172
},
173-
"markdownDescription": "The list of arguments used to launch the debug adapter executable."
173+
"markdownDescription": "The list of additional arguments used to launch the debug adapter executable."
174174
},
175175
"program": {
176176
"type": "string",
@@ -367,7 +367,7 @@
367367
"items": {
368368
"type": "string"
369369
},
370-
"markdownDescription": "The list of arguments used to launch the debug adapter executable."
370+
"markdownDescription": "The list of additional arguments used to launch the debug adapter executable."
371371
},
372372
"program": {
373373
"type": "string",

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -152,8 +152,8 @@ export class LLDBDapDescriptorFactory
152152
const openSettingsAction = "Open Settings";
153153
const message =
154154
path === undefined
155-
? "Unable to find the LLDB debug adapter executable."
156-
: `Debug adapter path: ${path} is not a valid file`;
155+
? "Unable to find the path to the LLDB debug adapter executable."
156+
: `Debug adapter path: ${path} is not a valid file.`;
157157
const callbackValue = await vscode.window.showErrorMessage(
158158
message,
159159
openSettingsAction,

0 commit comments

Comments
 (0)