[Lldb-commits] [lldb] r162047 - /lldb/trunk/source/Commands/CommandObjectCommands.cpp

Sean Callanan scallanan at apple.com
Thu Aug 16 14:46:59 PDT 2012


Author: spyffe
Date: Thu Aug 16 16:46:58 2012
New Revision: 162047

URL: http://llvm.org/viewvc/llvm-project?rev=162047&view=rev
Log:
Fixed some small formatting issues in the help for
"command regex."  It's now more readable and
grammatically correct.

<rdar://problem/12115962>

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

Modified: lldb/trunk/source/Commands/CommandObjectCommands.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Commands/CommandObjectCommands.cpp?rev=162047&r1=162046&r2=162047&view=diff
==============================================================================
--- lldb/trunk/source/Commands/CommandObjectCommands.cpp (original)
+++ lldb/trunk/source/Commands/CommandObjectCommands.cpp Thu Aug 16 16:46:58 2012
@@ -792,10 +792,12 @@
 "\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"
                     );
     }
     





More information about the lldb-commits mailing list