[Lldb-commits] [lldb] r135005 - /lldb/trunk/source/Commands/CommandObjectTarget.cpp

Johnny Chen johnny.chen at apple.com
Tue Jul 12 15:34:30 PDT 2011


Author: johnny
Date: Tue Jul 12 17:34:30 2011
New Revision: 135005

URL: http://llvm.org/viewvc/llvm-project?rev=135005&view=rev
Log:
Fix short description of 'target variable' command.

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

Modified: lldb/trunk/source/Commands/CommandObjectTarget.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Commands/CommandObjectTarget.cpp?rev=135005&r1=135004&r2=135005&view=diff
==============================================================================
--- lldb/trunk/source/Commands/CommandObjectTarget.cpp (original)
+++ lldb/trunk/source/Commands/CommandObjectTarget.cpp Tue Jul 12 17:34:30 2011
@@ -412,8 +412,8 @@
 public:
     CommandObjectTargetVariable (CommandInterpreter &interpreter) :
         CommandObject (interpreter,
-                       "target select",
-                       "Select a target as the current target by target index.",
+                       "target variable",
+                       "Read global variable(s) prior to running your binary.",
                        NULL,
                        0),
         m_option_group (interpreter),





More information about the lldb-commits mailing list