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 } },