aboutsummaryrefslogtreecommitdiff
path: root/lldb/source/Commands/CommandObjectThread.cpp
diff options
context:
space:
mode:
authorDave Lee <davelee.com@gmail.com>2024-05-21 10:16:51 -0700
committerGitHub <noreply@github.com>2024-05-21 10:16:51 -0700
commit98f105a1304e8d3fd0a0234d1d488ed513833df8 (patch)
treecec9864c93b5f31db63de1d5de00200371bc4736 /lldb/source/Commands/CommandObjectThread.cpp
parent3e15c97fa3812993bdc319827a5c6d867b765ae8 (diff)
downloadllvm-98f105a1304e8d3fd0a0234d1d488ed513833df8.zip
llvm-98f105a1304e8d3fd0a0234d1d488ed513833df8.tar.gz
llvm-98f105a1304e8d3fd0a0234d1d488ed513833df8.tar.bz2
[lldb] Add the word "backtrace" to bt help string (#92618)
We noticed that `apropos backtrace` did not return the `bt` alias. This change adds the word "backtrace" to the help for `bt`. It also updates `thread backtrace` to keep the language used roughly in sync.
Diffstat (limited to 'lldb/source/Commands/CommandObjectThread.cpp')
-rw-r--r--lldb/source/Commands/CommandObjectThread.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/source/Commands/CommandObjectThread.cpp b/lldb/source/Commands/CommandObjectThread.cpp
index 4397ee1..db96ee2 100644
--- a/lldb/source/Commands/CommandObjectThread.cpp
+++ b/lldb/source/Commands/CommandObjectThread.cpp
@@ -114,8 +114,8 @@ public:
CommandObjectThreadBacktrace(CommandInterpreter &interpreter)
: CommandObjectIterateOverThreads(
interpreter, "thread backtrace",
- "Show thread call stacks. Defaults to the current thread, thread "
- "indexes can be specified as arguments.\n"
+ "Show backtraces of thread call stacks. Defaults to the current "
+ "thread, thread indexes can be specified as arguments.\n"
"Use the thread-index \"all\" to see all threads.\n"
"Use the thread-index \"unique\" to see threads grouped by unique "
"call stacks.\n"