[Lldb-commits] [lldb] r140222 - /lldb/trunk/source/Interpreter/CommandObject.cpp

Johnny Chen johnny.chen at apple.com
Tue Sep 20 18:04:49 PDT 2011


Author: johnny
Date: Tue Sep 20 20:04:49 2011
New Revision: 140222

URL: http://llvm.org/viewvc/llvm-project?rev=140222&view=rev
Log:
Fix comment typo.

Modified:
    lldb/trunk/source/Interpreter/CommandObject.cpp

Modified: lldb/trunk/source/Interpreter/CommandObject.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Interpreter/CommandObject.cpp?rev=140222&r1=140221&r2=140222&view=diff
==============================================================================
--- lldb/trunk/source/Interpreter/CommandObject.cpp (original)
+++ lldb/trunk/source/Interpreter/CommandObject.cpp Tue Sep 20 20:04:49 2011
@@ -757,7 +757,7 @@
     id_range_arg.arg_type = eArgTypeBreakpointIDRange;
     id_range_arg.arg_repetition = eArgRepeatOptional;
 
-    // The first (and only) argument for this command could be either a id or a id_range.
+    // The first (and only) argument for this command could be either an id or an id_range.
     // Push both variants into the entry for the first argument for this command.
     arg.push_back(id_arg);
     arg.push_back(id_range_arg);





More information about the lldb-commits mailing list