[Lldb-commits] [lldb] 90d429c - [lldb] Fix a typo in --one-shot description (NFC) (#155637)

via lldb-commits lldb-commits at lists.llvm.org
Wed Aug 27 09:55:51 PDT 2025


Author: Dave Lee
Date: 2025-08-27T09:55:48-07:00
New Revision: 90d429ca5762264ff932995a2bdce2fc2f155688

URL: https://github.com/llvm/llvm-project/commit/90d429ca5762264ff932995a2bdce2fc2f155688
DIFF: https://github.com/llvm/llvm-project/commit/90d429ca5762264ff932995a2bdce2fc2f155688.diff

LOG: [lldb] Fix a typo in --one-shot description (NFC) (#155637)

Added: 
    

Modified: 
    lldb/source/Commands/Options.td

Removed: 
    


################################################################################
diff  --git a/lldb/source/Commands/Options.td b/lldb/source/Commands/Options.td
index 2aa0b10ac34e5..7bdd6cfcfcc92 100644
--- a/lldb/source/Commands/Options.td
+++ b/lldb/source/Commands/Options.td
@@ -84,7 +84,7 @@ let Command = "breakpoint modify" in {
     Desc<"Set the number of times this breakpoint is skipped before stopping.">;
   def breakpoint_modify_one_shot : Option<"one-shot", "o">, Group<1>,
     Arg<"Boolean">,
-    Desc<"The breakpoint is deleted the first time it stop causes a stop.">;
+    Desc<"The breakpoint is deleted the first time it causes a stop.">;
   def breakpoint_modify_thread_index : Option<"thread-index", "x">, Group<1>,
     Arg<"ThreadIndex">, Desc<"The breakpoint stops only for the thread whose "
     "index matches this argument.">;


        


More information about the lldb-commits mailing list