From 7428a18c1e9ba131022184746889b69308c0180d Mon Sep 17 00:00:00 2001 From: Kate Stone Date: Thu, 14 Jul 2016 22:03:10 +0000 Subject: LLDB help content has accumulated over time without a recent attempt to review it for consistency, accuracy, and clarity. These changes attempt to address all of the above while keeping the text relatively terse. llvm-svn: 275485 --- lldb/source/Commands/CommandObjectWatchpoint.cpp | 16 ++++++---------- 1 file changed, 6 insertions(+), 10 deletions(-) (limited to 'lldb/source/Commands/CommandObjectWatchpoint.cpp') diff --git a/lldb/source/Commands/CommandObjectWatchpoint.cpp b/lldb/source/Commands/CommandObjectWatchpoint.cpp index ddda3ad9fe1..977b6bb3743 100644 --- a/lldb/source/Commands/CommandObjectWatchpoint.cpp +++ b/lldb/source/Commands/CommandObjectWatchpoint.cpp @@ -1308,11 +1308,9 @@ private: class CommandObjectWatchpointSet : public CommandObjectMultiword { public: - CommandObjectWatchpointSet (CommandInterpreter &interpreter) : - CommandObjectMultiword (interpreter, - "watchpoint set", - "A set of commands for setting a watchpoint.", - "watchpoint set []") + CommandObjectWatchpointSet(CommandInterpreter &interpreter) + : CommandObjectMultiword(interpreter, "watchpoint set", "Commands for setting a watchpoint.", + "watchpoint set []") { LoadSubCommand ("variable", CommandObjectSP (new CommandObjectWatchpointSetVariable (interpreter))); @@ -1327,11 +1325,9 @@ public: //------------------------------------------------------------------------- #pragma mark MultiwordWatchpoint -CommandObjectMultiwordWatchpoint::CommandObjectMultiwordWatchpoint(CommandInterpreter &interpreter) : - CommandObjectMultiword (interpreter, - "watchpoint", - "A set of commands for operating on watchpoints.", - "watchpoint []") +CommandObjectMultiwordWatchpoint::CommandObjectMultiwordWatchpoint(CommandInterpreter &interpreter) + : CommandObjectMultiword(interpreter, "watchpoint", "Commands for operating on watchpoints.", + "watchpoint []") { CommandObjectSP list_command_object (new CommandObjectWatchpointList (interpreter)); CommandObjectSP enable_command_object (new CommandObjectWatchpointEnable (interpreter)); -- cgit v1.2.3