[Lldb-commits] [lldb] [lldb] Fix typo in the description of the -X alias (PR #156119)
Jonas Devlieghere via lldb-commits
lldb-commits at lists.llvm.org
Fri Aug 29 15:43:06 PDT 2025
https://github.com/JDevlieghere created https://github.com/llvm/llvm-project/pull/156119
None
>From c872dddcbd2f8e1d65357a943a65d9e4cfc0a519 Mon Sep 17 00:00:00 2001
From: Jonas Devlieghere <jonas at devlieghere.com>
Date: Fri, 29 Aug 2025 15:42:29 -0700
Subject: [PATCH] [lldb] Fix typo in the description of the -X alias
---
lldb/tools/driver/Options.td | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lldb/tools/driver/Options.td b/lldb/tools/driver/Options.td
index 099b9f910d283..311e2602cc41f 100644
--- a/lldb/tools/driver/Options.td
+++ b/lldb/tools/driver/Options.td
@@ -226,7 +226,7 @@ def : Flag<["-"], "e">, Alias<editor>, HelpText<"Alias for --editor">;
def no_use_colors : F<"no-use-colors">, HelpText<"Do not use colors.">;
def : Flag<["-"], "X">,
Alias<no_use_colors>,
- HelpText<"Alias for --no-use-color">;
+ HelpText<"Alias for --no-use-colors">;
def file : Separate<["--", "-"], "file">,
MetaVarName<"<filename>">,
More information about the lldb-commits
mailing list