diff options
author | Jim Ingham <jingham@apple.com> | 2016-02-10 22:30:20 +0000 |
---|---|---|
committer | Jim Ingham <jingham@apple.com> | 2016-02-10 22:30:20 +0000 |
commit | b4a5aa239c0484782899485d346c892fa05645ef (patch) | |
tree | f9bf704edb9d046268fba544dce99ab8f17cd679 /lldb/source/Commands/CommandObjectBreakpoint.cpp | |
parent | d59638e14f61a5429eb60c7c3630e17dcc888771 (diff) | |
download | llvm-b4a5aa239c0484782899485d346c892fa05645ef.zip llvm-b4a5aa239c0484782899485d346c892fa05645ef.tar.gz llvm-b4a5aa239c0484782899485d346c892fa05645ef.tar.bz2 |
Revert 260436. I pretty consistently upper-case the letter I use for the
short option as an aid to memory. Like it's w because of the W in throW.
That helps me remember. If we are going to take these out we should take them
all out. But I kind of like them.
llvm-svn: 260452
Diffstat (limited to 'lldb/source/Commands/CommandObjectBreakpoint.cpp')
-rw-r--r-- | lldb/source/Commands/CommandObjectBreakpoint.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/source/Commands/CommandObjectBreakpoint.cpp b/lldb/source/Commands/CommandObjectBreakpoint.cpp index 8a22fcbe..640cece 100644 --- a/lldb/source/Commands/CommandObjectBreakpoint.cpp +++ b/lldb/source/Commands/CommandObjectBreakpoint.cpp @@ -830,10 +830,10 @@ CommandObjectBreakpointSet::CommandOptions::g_option_table[] = "Set the breakpoint on exceptions thrown by the specified language (without options, on throw but not catch.)" }, { LLDB_OPT_SET_10, false, "on-throw", 'w', OptionParser::eRequiredArgument, NULL, NULL, 0, eArgTypeBoolean, - "Set the breakpoint on exception throw." }, + "Set the breakpoint on exception throW." }, { LLDB_OPT_SET_10, false, "on-catch", 'h', OptionParser::eRequiredArgument, NULL, NULL, 0, eArgTypeBoolean, - "Set the breakpoint on exception catch." }, + "Set the breakpoint on exception catcH." }, // Don't add this option till it actually does something useful... // { LLDB_OPT_SET_10, false, "exception-typename", 'O', OptionParser::eRequiredArgument, NULL, NULL, 0, eArgTypeTypeName, |