aboutsummaryrefslogtreecommitdiff
path: root/lldb/source/Commands/CommandObjectHelp.cpp
diff options
context:
space:
mode:
authorSean Callanan <scallanan@apple.com>2012-12-12 18:02:47 +0000
committerSean Callanan <scallanan@apple.com>2012-12-12 18:02:47 +0000
commita87ecb43ab4c88d53990be34e6efbd41f3dd43a7 (patch)
treebd5a3d8177d3765a11909f696713958d3b21a906 /lldb/source/Commands/CommandObjectHelp.cpp
parent13799b323ec8c663d0fb740144a1c2ff0ee5161b (diff)
downloadllvm-a87ecb43ab4c88d53990be34e6efbd41f3dd43a7.zip
llvm-a87ecb43ab4c88d53990be34e6efbd41f3dd43a7.tar.gz
llvm-a87ecb43ab4c88d53990be34e6efbd41f3dd43a7.tar.bz2
Minor grammar and style fixes in documentation.
<rdar://problem/12861963> <rdar://problem/12861904> llvm-svn: 169997
Diffstat (limited to 'lldb/source/Commands/CommandObjectHelp.cpp')
-rw-r--r--lldb/source/Commands/CommandObjectHelp.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/lldb/source/Commands/CommandObjectHelp.cpp b/lldb/source/Commands/CommandObjectHelp.cpp
index 6a073ef..9a50e5c 100644
--- a/lldb/source/Commands/CommandObjectHelp.cpp
+++ b/lldb/source/Commands/CommandObjectHelp.cpp
@@ -173,8 +173,9 @@ CommandObjectHelp::DoExecute (Args& command, CommandReturnObject &result)
{
// Also emit a warning about using "--" in case you are using a command that takes options and arguments.
m_interpreter.OutputFormattedHelpText (output_strm, "", "",
- "\nThis command takes options and arguments, if your arguments look like option specifiers"
- " you must use '--' to terminate the options before starting to give the arguments.", 1);
+ "\nThis command takes options and free-form arguments. If your arguments resemble"
+ " option specifiers (i.e., they start with a - or --), you must use ' -- ' between"
+ " the end of the command options and the beginning of the arguments.", 1);
}
// Mark this help command with a success status.