[Lldb-commits] [lldb] [lldb] Fix a typo in --one-shot description (NFC) (PR #155637)
Dave Lee via lldb-commits
lldb-commits at lists.llvm.org
Wed Aug 27 08:26:50 PDT 2025
https://github.com/kastiglione created https://github.com/llvm/llvm-project/pull/155637
None
>From 6e8a5f3e782e30a18b6910489c1ecfce7b38d977 Mon Sep 17 00:00:00 2001
From: Dave Lee <davelee.com at gmail.com>
Date: Wed, 27 Aug 2025 08:24:02 -0700
Subject: [PATCH] [lldb] Fix a typo in --one-shot description (NFC)
---
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 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