Skip to content

Commit b315e09

Browse files
committed
Address review comments
1 parent 48e900c commit b315e09

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

lldb/tools/lldb-dap/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -182,8 +182,8 @@ The `vscode://llvm-vs-code-extensions.lldb-dap/launch/config?config={launch-conf
182182
URI accepts a [URL-encoded](https://en.wikipedia.org/wiki/Percent-encoding)
183183
JSON launch config.
184184

185-
This is useful, e.g., to integrate with custom scripts which start debugging
186-
sessions. The URIs might be printed to the terminal, potentially using
185+
This is useful for integration with custom scripts to start debugging
186+
sessions. The URI might be printed to the terminal, potentially using
187187
[OSC-8 hyperlinks](https://gist.github.com/egmontkob/eb114294efbcd5adb1944c9f3cb5feda),
188188
or passed to `vscode --open-url` or `xdg-open`, although mileage may vary
189189
depending on your specific debugging setup.

lldb/tools/lldb-dap/src-ts/uri-launch-handler.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ export class LaunchUriHandler implements vscode.UriHandler {
99
if (configJson === null) {
1010
throw new Error("Missing `config` URI parameter");
1111
}
12-
// Build the debug config
12+
// Build the debug config.
1313
let debugConfig: vscode.DebugConfiguration = {
1414
type: 'lldb-dap',
1515
request: 'launch',

0 commit comments

Comments
 (0)