aboutsummaryrefslogtreecommitdiff
path: root/lldb/source/Commands/CommandObjectCommands.cpp
diff options
context:
space:
mode:
authorSean Callanan <scallanan@apple.com>2012-08-16 21:46:58 +0000
committerSean Callanan <scallanan@apple.com>2012-08-16 21:46:58 +0000
commitadc43c998c9e6761ce2b4f30c197de3257ff30e8 (patch)
tree452d828e3c92df0bad8516bbcb4bb796c5b6a43e /lldb/source/Commands/CommandObjectCommands.cpp
parentaa01b8307850454e4754a50df8df7abd8790c052 (diff)
downloadllvm-adc43c998c9e6761ce2b4f30c197de3257ff30e8.zip
llvm-adc43c998c9e6761ce2b4f30c197de3257ff30e8.tar.gz
llvm-adc43c998c9e6761ce2b4f30c197de3257ff30e8.tar.bz2
Fixed some small formatting issues in the help for
"command regex." It's now more readable and grammatically correct. <rdar://problem/12115962> llvm-svn: 162047
Diffstat (limited to 'lldb/source/Commands/CommandObjectCommands.cpp')
-rw-r--r--lldb/source/Commands/CommandObjectCommands.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/lldb/source/Commands/CommandObjectCommands.cpp b/lldb/source/Commands/CommandObjectCommands.cpp
index d6eb21d..a1a65ae 100644
--- a/lldb/source/Commands/CommandObjectCommands.cpp
+++ b/lldb/source/Commands/CommandObjectCommands.cpp
@@ -792,10 +792,12 @@ public:
"\n"
"EXAMPLES\n"
"\n"
-"The following example with define a regular expression command named 'f' that\n"
+"The following example will define a regular expression command named 'f' that\n"
"will call 'finish' if there are no arguments, or 'frame select <frame-idx>' if\n"
"a number follows 'f':\n"
-"(lldb) command regex f s/^$/finish/ 's/([0-9]+)/frame select %1/'\n"
+"\n"
+" (lldb) command regex f s/^$/finish/ 's/([0-9]+)/frame select %1/'\n"
+"\n"
);
}