[Lldb-commits] [lldb] [lldb][NFC] Fix `help breakpoint set` typo. (PR #152981)

via lldb-commits lldb-commits at lists.llvm.org
Mon Aug 11 02:23:55 PDT 2025


https://github.com/b10902118 created https://github.com/llvm/llvm-project/pull/152981

None

>From 27893ec5396e167b7db4b9f0fe39a005a98f7b40 Mon Sep 17 00:00:00 2001
From: b10902118 <b10902118 at ntu.edu.tw>
Date: Mon, 11 Aug 2025 17:07:31 +0800
Subject: [PATCH] [lldb][NFC] Fix `help breakpoint set` typo.

---
 lldb/source/Commands/Options.td | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lldb/source/Commands/Options.td b/lldb/source/Commands/Options.td
index acb741081cac3..61acc40585976 100644
--- a/lldb/source/Commands/Options.td
+++ b/lldb/source/Commands/Options.td
@@ -205,7 +205,7 @@ let Command = "breakpoint set" in {
     "identifiers). If not set the target.language setting is used.">;
   def breakpoint_set_skip_prologue : Option<"skip-prologue", "K">,
     Arg<"Boolean">, Groups<[1,3,4,5,6,7,8,12]>,
-    Desc<"sKip the prologue if the breakpoint is at the beginning of a "
+    Desc<"Skip the prologue if the breakpoint is at the beginning of a "
     "function. If not set the target.skip-prologue setting is used.">;
   def breakpoint_set_breakpoint_name : Option<"breakpoint-name", "N">,
     Arg<"BreakpointName">,



More information about the lldb-commits mailing list