diff options
author | Jim Ingham <jingham@apple.com> | 2013-04-09 18:05:22 +0000 |
---|---|---|
committer | Jim Ingham <jingham@apple.com> | 2013-04-09 18:05:22 +0000 |
commit | b2b256af4fac7c18097dd11cff738a665363cb19 (patch) | |
tree | 3c297905bc028b3f16af1192e6ab1a11d12e2fd4 /lldb/source/Commands/CommandObjectBreakpoint.cpp | |
parent | e81309b3bf9274d24b5960872d43242049017eaa (diff) | |
download | bcm5719-llvm-b2b256af4fac7c18097dd11cff738a665363cb19.tar.gz bcm5719-llvm-b2b256af4fac7c18097dd11cff738a665363cb19.zip |
Fix the help message for “one-shot”.
llvm-svn: 179110
Diffstat (limited to 'lldb/source/Commands/CommandObjectBreakpoint.cpp')
-rw-r--r-- | lldb/source/Commands/CommandObjectBreakpoint.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Commands/CommandObjectBreakpoint.cpp b/lldb/source/Commands/CommandObjectBreakpoint.cpp index 8625a182bce..25a412c2fd6 100644 --- a/lldb/source/Commands/CommandObjectBreakpoint.cpp +++ b/lldb/source/Commands/CommandObjectBreakpoint.cpp @@ -611,7 +611,7 @@ CommandObjectBreakpointSet::CommandOptions::g_option_table[] = "Set the number of times this breakpoint is skipped before stopping." }, { LLDB_OPT_SET_ALL, false, "one-shot", 'o', no_argument, NULL, 0, eArgTypeNone, - "The breakpoint is deleted the first time it stop causes a stop." }, + "The breakpoint is deleted the first time it causes a stop." }, { LLDB_OPT_SET_ALL, false, "condition", 'c', required_argument, NULL, 0, eArgTypeExpression, "The breakpoint stops only if this condition expression evaluates to true."}, |