diff options
author | Enrico Granata <egranata@apple.com> | 2016-02-10 21:30:20 +0000 |
---|---|---|
committer | Enrico Granata <egranata@apple.com> | 2016-02-10 21:30:20 +0000 |
commit | 909e2cdc54316096e6e3d389f5a3d0cbb79657a5 (patch) | |
tree | b82e3ec3ce9c42ebb9ca6b10bf1e05c07318890c /lldb/source/Commands/CommandObjectBreakpoint.cpp | |
parent | 9ce06a4ab86a3d2a036ce038694cfc749112fa9a (diff) | |
download | bcm5719-llvm-909e2cdc54316096e6e3d389f5a3d0cbb79657a5.tar.gz bcm5719-llvm-909e2cdc54316096e6e3d389f5a3d0cbb79657a5.zip |
No reason for these two letters to be uppercase
llvm-svn: 260436
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 640cece02b8..8a22fcbe675 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, |