From e3d26315672b8ae63b69ae9a3a03281e7b84a42c Mon Sep 17 00:00:00 2001 From: Caroline Tice Date: Wed, 8 Sep 2010 21:06:11 +0000 Subject: Clean up, clarify and standardize help text, and fix a few help text formatting problems. llvm-svn: 113408 --- lldb/source/Commands/CommandObjectBreakpoint.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'lldb/source/Commands/CommandObjectBreakpoint.cpp') diff --git a/lldb/source/Commands/CommandObjectBreakpoint.cpp b/lldb/source/Commands/CommandObjectBreakpoint.cpp index bbbdf6b..9b53d6a 100644 --- a/lldb/source/Commands/CommandObjectBreakpoint.cpp +++ b/lldb/source/Commands/CommandObjectBreakpoint.cpp @@ -771,7 +771,7 @@ CommandObjectBreakpointList::Execute CommandObjectBreakpointEnable::CommandObjectBreakpointEnable () : CommandObject ("enable", - "Enables the specified disabled breakpoint(s). If no breakpoints are specified, enables all of them.", + "Enable the specified disabled breakpoint(s). If no breakpoints are specified, enable all of them.", "breakpoint enable [ | ]") { // This command object can either be called via 'enable' or 'breakpoint enable'. Because it has two different @@ -873,7 +873,7 @@ CommandObjectBreakpointEnable::Execute CommandObjectBreakpointDisable::CommandObjectBreakpointDisable () : CommandObject ("disable", - "Disables the specified breakpoint(s) without removing it/them. If no breakpoints are specified, disables them all.", + "Disable the specified breakpoint(s) without removing it/them. If no breakpoints are specified, disable them all.", "disable [ | ]") { // This command object can either be called via 'enable' or 'breakpoint enable'. Because it has two different @@ -973,7 +973,7 @@ CommandObjectBreakpointDisable::Execute CommandObjectBreakpointDelete::CommandObjectBreakpointDelete() : CommandObject ("breakpoint delete", - "Delete the specified breakpoint(s). If no breakpoints are specified, deletes them all.", + "Delete the specified breakpoint(s). If no breakpoints are specified, delete them all.", "breakpoint delete [ | ]") { } @@ -1208,7 +1208,7 @@ CommandObjectBreakpointModify::CommandOptions::ResetOptionValues () #pragma mark Modify CommandObjectBreakpointModify::CommandObjectBreakpointModify () : - CommandObject ("breakpoint modify", "Modifys the options on a breakpoint or set of breakpoints in the executable.", + CommandObject ("breakpoint modify", "Modify the options on a breakpoint or set of breakpoints in the executable.", "breakpoint modify break-id [break-id ...]") { } -- cgit v1.1