From 1669711c0e7c95eea04f7b2ce71ce53f980babc5 Mon Sep 17 00:00:00 2001 From: polinasok <51177946+polinasok@users.noreply.github.com> Date: Mon, 4 Apr 2022 12:02:43 -0700 Subject: [PATCH] Documentation/api/dap/README: add dlv dap usage link (#2957) Co-authored-by: Polina Sokolova --- Documentation/api/dap/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Documentation/api/dap/README.md b/Documentation/api/dap/README.md index f220c224..819b504d 100644 --- a/Documentation/api/dap/README.md +++ b/Documentation/api/dap/README.md @@ -3,7 +3,7 @@ Delve exposes a [DAP](https://microsoft.github.io/debug-adapter-protocol/overview) API interface. This interface is served over a streaming TCP socket using `dlv` server in one of the two headless modes: -* `dlv dap` - starts a single-use DAP-only server that waits for a client to specify launch/attach configuration for starting the debug session. +* [`dlv dap`](../../usage/dlv_dap.md) - starts a single-use DAP-only server that waits for a client to specify launch/attach configuration for starting the debug session. * `dlv --headless ` - starts a general server, enters a debug session for the specified debuggee and waits for a [JSON-RPC](../json-rpc/README.md) or a [DAP](https://microsoft.github.io/debug-adapter-protocol/overview) client to begin interactive debugging. Can be used in multi-client mode with the following options: * `--accept-multiclient` - use to support connections from multiple clients * `--continue` - use to resume debuggee execution as soon as server session starts