[Lldb-commits] [PATCH] D112199: [LLDB] [NFC] Typo fix in usage text for "type filter" command
Shivam Gupta via Phabricator via lldb-commits
lldb-commits at lists.llvm.org
Wed Oct 20 21:42:20 PDT 2021
xgupta created this revision.
xgupta added reviewers: labath, teemperor.
xgupta requested review of this revision.
Herald added a project: LLDB.
Herald added a subscriber: lldb-commits.
When you invoke "help type filter" the resulting help shows:
Syntax: type synthetic [<sub-command-options>]
This patch fixes the help so it says "type filter" instead of "type synthetic".
patch by: "Daniel Jalkut <jalkut at red-sweater.com>"
Repository:
rG LLVM Github Monorepo
https://reviews.llvm.org/D112199
Files:
lldb/source/Commands/CommandObjectType.cpp
Index: lldb/source/Commands/CommandObjectType.cpp
===================================================================
--- lldb/source/Commands/CommandObjectType.cpp
+++ lldb/source/Commands/CommandObjectType.cpp
@@ -2978,7 +2978,7 @@
CommandObjectTypeFilter(CommandInterpreter &interpreter)
: CommandObjectMultiword(interpreter, "type filter",
"Commands for operating on type filters.",
- "type synthetic [<sub-command-options>] ") {
+ "type filter [<sub-command-options>] ") {
LoadSubCommand(
"add", CommandObjectSP(new CommandObjectTypeFilterAdd(interpreter)));
LoadSubCommand("clear", CommandObjectSP(
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D112199.381144.patch
Type: text/x-patch
Size: 726 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20211021/7e4398ef/attachment.bin>
More information about the lldb-commits
mailing list