[Lldb-commits] [lldb] r260436 - No reason for these two letters to be uppercase

Enrico Granata via lldb-commits lldb-commits at lists.llvm.org
Wed Feb 10 13:30:20 PST 2016


Author: enrico
Date: Wed Feb 10 15:30:20 2016
New Revision: 260436

URL: http://llvm.org/viewvc/llvm-project?rev=260436&view=rev
Log:
No reason for these two letters to be uppercase

Modified:
    lldb/trunk/source/Commands/CommandObjectBreakpoint.cpp

Modified: lldb/trunk/source/Commands/CommandObjectBreakpoint.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Commands/CommandObjectBreakpoint.cpp?rev=260436&r1=260435&r2=260436&view=diff
==============================================================================
--- lldb/trunk/source/Commands/CommandObjectBreakpoint.cpp (original)
+++ lldb/trunk/source/Commands/CommandObjectBreakpoint.cpp Wed Feb 10 15:30:20 2016
@@ -830,10 +830,10 @@ CommandObjectBreakpointSet::CommandOptio
         "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,




More information about the lldb-commits mailing list