[Lldb-commits] [lldb] r136919 - /lldb/trunk/www/tutorial.html
Johnny Chen
johnny.chen at apple.com
Thu Aug 4 14:01:05 PDT 2011
Author: johnny
Date: Thu Aug 4 16:01:04 2011
New Revision: 136919
URL: http://llvm.org/viewvc/llvm-project?rev=136919&view=rev
Log:
Fix some typos.
Modified:
lldb/trunk/www/tutorial.html
Modified: lldb/trunk/www/tutorial.html
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/www/tutorial.html?rev=136919&r1=136918&r2=136919&view=diff
==============================================================================
--- lldb/trunk/www/tutorial.html (original)
+++ lldb/trunk/www/tutorial.html Thu Aug 4 16:01:04 2011
@@ -95,14 +95,14 @@
<p>Setting breakpoints by name is even more specialized in LLDB as you can specify
that you want to set a breakpoint at a function by method name. To set a breakpoint
- on all C++ methods named <code>foo</code> you can entier either of:</p>
+ on all C++ methods named <code>foo</code> you can enter either of:</p>
<code>
(lldb) breakpoint set --method foo
<br>(lldb) breakpoint set -M foo
</code>
- <p>To set a breakpoint Objective C selectors named <code>alignLeftEdges:</code> you can entier either of:</p>
+ <p>To set a breakpoint Objective C selectors named <code>alignLeftEdges:</code> you can enter either of:</p>
<code>
(lldb) breakpoint set --selector alignLeftEdges:
More information about the lldb-commits
mailing list