From 6dae5a1fcdf45511da082944155390fa2993d676 Mon Sep 17 00:00:00 2001 From: versecafe <147033096+versecafe@users.noreply.github.com> Date: Tue, 26 Aug 2025 11:22:07 -0700 Subject: [PATCH] typos: Fix typos in codelldb & gdb daps --- crates/dap_adapters/src/codelldb.rs | 2 +- crates/dap_adapters/src/gdb.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/dap_adapters/src/codelldb.rs b/crates/dap_adapters/src/codelldb.rs index 25dc875740..6615d2e2a3 100644 --- a/crates/dap_adapters/src/codelldb.rs +++ b/crates/dap_adapters/src/codelldb.rs @@ -182,7 +182,7 @@ impl DebugAdapter for CodeLldbDebugAdapter { }, "stopOnEntry": { "type": "boolean", - "description": "Automatically stop debuggee after launch", + "description": "Automatically stop debugger after launch", "default": false }, "initCommands": { diff --git a/crates/dap_adapters/src/gdb.rs b/crates/dap_adapters/src/gdb.rs index 17b7a65911..2ea8826608 100644 --- a/crates/dap_adapters/src/gdb.rs +++ b/crates/dap_adapters/src/gdb.rs @@ -109,7 +109,7 @@ impl DebugAdapter for GdbDebugAdapter { }, "stopOnEntry": { "type": "boolean", - "description": "When true, GDB will set a temporary breakpoint at the program's first instruction, like the 'starti' command.", + "description": "When true, GDB will set a temporary breakpoint at the program's first instruction, like the 'start' command.", "default": false } },