Skip to content

Commit 89d49d3

Browse files
committed
Address comments
1 parent 45c3f13 commit 89d49d3

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

lldb/docs/resources/lldbdap.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Contributing to LLDB-DAP
22

33
This guide describes how to extend and contribute to lldb-dap.
4-
For documentation on how to use lldb-dap, see [lldb-dap's README](https://github.com/llvm/llvm-project/blob/release/19.x/lldb/tools/lldb-dap/README.md).
4+
For documentation on how to use lldb-dap, see [lldb-dap's README](https://github.com/llvm/llvm-project/blob/main/lldb/tools/lldb-dap/README.md).
55

66
lldb-dap and LLDB are developed under the umbrella of the
77
[LLVM project](https://llvm.org/). As such, the
@@ -61,16 +61,16 @@ The most relevant resources for the Debug Adapter Protocol are:
6161
* the [human-readable specification](https://microsoft.github.io/debug-adapter-protocol/specification), and
6262
* the [JSON-schema specification](https://github.com/microsoft/debug-adapter-protocol/blob/main/debugAdapterProtocol.json).
6363

64-
Sometimes, lldb-dap also adds proprietary extensions to the protocol. To take
65-
advantage of those proprietary protocol extensions, IDE-specific support code
66-
is needed, usually inside the VS Code extension. When adding a new extension,
67-
please first look through the [issue tracker of the Debug Adapter
64+
lldb-dap adds some additional non-standard extensions to the protocol. To take
65+
advantage of those extensions, IDE-specific support code is needed, usually
66+
inside the VS Code extension. When adding a new extension, please first look
67+
through the [issue tracker of the Debug Adapter
6868
Protocol](https://github.com/microsoft/debug-adapter-protocol/issues) to check
6969
if there already is a proposal serving your use case. If so, try to take
7070
inspiration from it. If not, consider opening an upstream issue.
7171

7272
To avoid naming collisions with potential future extensions of the Debug
73-
Adapter protocol, all proprietary extensions should use the prefix
73+
Adapter protocol, all non-standard extensions should use the prefix
7474
`$__lldb_extension` in their JSON property names.
7575

7676
### Debugging the Debug Adapter Protocol

0 commit comments

Comments
 (0)