[Lldb-commits] [lldb] r199228 - Fix typeo on memory read command example.

Jason Molenda jmolenda at apple.com
Tue Jan 14 09:41:13 PST 2014


Author: jmolenda
Date: Tue Jan 14 11:41:13 2014
New Revision: 199228

URL: http://llvm.org/viewvc/llvm-project?rev=199228&view=rev
Log:
Fix typeo on memory read command example.

Modified:
    lldb/trunk/www/lldb-gdb.html

Modified: lldb/trunk/www/lldb-gdb.html
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/www/lldb-gdb.html?rev=199228&r1=199227&r2=199228&view=diff
==============================================================================
--- lldb/trunk/www/lldb-gdb.html (original)
+++ lldb/trunk/www/lldb-gdb.html Tue Jan 14 11:41:13 2014
@@ -974,8 +974,8 @@
                             <b>(gdb)</b> dump memory /tmp/mem.bin 0x1000 0x2000
                         </td>
                         <td class="content">
-                            <b>(lldb)</b> memory read --outfile /tmp/mem.bin --binary  0x1000 0x1200<br>
-                            <b>(lldb)</b> me r -o /tmp/mem.bin -b 0x1000 0x1200<br>
+                            <b>(lldb)</b> memory read --outfile /tmp/mem.bin --binary  0x1000 0x2000<br>
+                            <b>(lldb)</b> me r -o /tmp/mem.bin -b 0x1000 0x2000<br>
                         </td>
                     </tr>
                     <tr><td class="header" colspan="2">Get information about a specific heap allocation (available on Mac OS X only).</td></tr>





More information about the lldb-commits mailing list