[Lldb-commits] [lldb] r167343 - /lldb/trunk/source/Commands/CommandObjectTarget.cpp
Greg Clayton
gclayton at apple.com
Fri Nov 2 17:10:22 PDT 2012
Author: gclayton
Date: Fri Nov 2 19:10:22 2012
New Revision: 167343
URL: http://llvm.org/viewvc/llvm-project?rev=167343&view=rev
Log:
Make sure users know that "target variable" can read variables while running a process by changing the documentation string.
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=167343&r1=167342&r2=167343&view=diff
==============================================================================
--- lldb/trunk/source/Commands/CommandObjectTarget.cpp (original)
+++ lldb/trunk/source/Commands/CommandObjectTarget.cpp Fri Nov 2 19:10:22 2012
@@ -571,7 +571,7 @@
CommandObjectTargetVariable (CommandInterpreter &interpreter) :
CommandObjectParsed (interpreter,
"target variable",
- "Read global variable(s) prior to running your binary.",
+ "Read global variable(s) prior to, or while running your binary.",
NULL,
0),
m_option_group (interpreter),
More information about the lldb-commits
mailing list