diff options
author | Caroline Tice <ctice@apple.com> | 2010-09-08 21:06:11 +0000 |
---|---|---|
committer | Caroline Tice <ctice@apple.com> | 2010-09-08 21:06:11 +0000 |
commit | e3d26315672b8ae63b69ae9a3a03281e7b84a42c (patch) | |
tree | 7a48cc2c77b164dc45872cbdf434d5c04e57f4ea /lldb/source/Commands/CommandObjectBreakpointCommand.cpp | |
parent | 2634032c66df3656a65b2a4913efdd53a512c09b (diff) | |
download | bcm5719-llvm-e3d26315672b8ae63b69ae9a3a03281e7b84a42c.tar.gz bcm5719-llvm-e3d26315672b8ae63b69ae9a3a03281e7b84a42c.zip |
Clean up, clarify and standardize help text, and fix a few help text formatting problems.
llvm-svn: 113408
Diffstat (limited to 'lldb/source/Commands/CommandObjectBreakpointCommand.cpp')
-rw-r--r-- | lldb/source/Commands/CommandObjectBreakpointCommand.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lldb/source/Commands/CommandObjectBreakpointCommand.cpp b/lldb/source/Commands/CommandObjectBreakpointCommand.cpp index 765333b912b..60c7d8fef5e 100644 --- a/lldb/source/Commands/CommandObjectBreakpointCommand.cpp +++ b/lldb/source/Commands/CommandObjectBreakpointCommand.cpp @@ -50,7 +50,7 @@ CommandObjectBreakpointCommandAdd::CommandOptions::g_option_table[] = "Write the breakpoint command script in the Python scripting language."}, { LLDB_OPT_SET_3, true, "commands", 'c', no_argument, NULL, 0, NULL, - "Write the breakpoint command script using the command line commands."}, + "Write the breakpoint command script using standard debugger commands."}, { 0, false, NULL, 0, 0, NULL, 0, NULL, NULL } }; @@ -112,7 +112,7 @@ CommandObjectBreakpointCommandAdd::CommandOptions::ResetOptionValues () CommandObjectBreakpointCommandAdd::CommandObjectBreakpointCommandAdd () : CommandObject ("add", - "Adds a set of commands to a breakpoint to be executed whenever a breakpoint is hit.", + "Add a set of commands to a breakpoint, to be executed whenever the breakpoint is hit.", "breakpoint command add <cmd-options> <breakpoint-id>") { SetHelpLong ( @@ -193,8 +193,8 @@ initialized: \n\ \n\ (lldb) \n\ \n\ -Special information debugger command breakpoint commands \n\ ---------------------------------------------------------- \n\ +Special information about debugger command breakpoint commands \n\ +-------------------------------------------------------------- \n\ \n\ You may enter any debugger command, exactly as you would at the \n\ debugger prompt. You may enter as many debugger commands as you like, \n\ |