diff options
Diffstat (limited to 'lldb/source/Commands/CommandObjectPlugin.cpp')
-rw-r--r-- | lldb/source/Commands/CommandObjectPlugin.cpp | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/lldb/source/Commands/CommandObjectPlugin.cpp b/lldb/source/Commands/CommandObjectPlugin.cpp index 3fae35a..221c9a6 100644 --- a/lldb/source/Commands/CommandObjectPlugin.cpp +++ b/lldb/source/Commands/CommandObjectPlugin.cpp @@ -99,11 +99,9 @@ protected: } }; -CommandObjectPlugin::CommandObjectPlugin (CommandInterpreter &interpreter) : -CommandObjectMultiword (interpreter, - "plugin", - "A set of commands for managing or customizing plugin commands.", - "plugin <subcommand> [<subcommand-options>]") +CommandObjectPlugin::CommandObjectPlugin(CommandInterpreter &interpreter) + : CommandObjectMultiword(interpreter, "plugin", "Commands for managing LLDB plugins.", + "plugin <subcommand> [<subcommand-options>]") { LoadSubCommand ("load", CommandObjectSP (new CommandObjectPluginLoad (interpreter))); } |