No reason for these two letters to be uppercase
authorEnrico Granata <egranata@apple.com>
Wed, 10 Feb 2016 21:30:20 +0000 (21:30 +0000)
committerEnrico Granata <egranata@apple.com>
Wed, 10 Feb 2016 21:30:20 +0000 (21:30 +0000)
llvm-svn: 260436

lldb/source/Commands/CommandObjectBreakpoint.cpp

index 640cece..8a22fcb 100644 (file)
@@ -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,