aboutsummaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2010-03-26 19:51:14 +0000
committerDan Gohman <gohman@apple.com>2010-03-26 19:51:14 +0000
commit166a023f3ef3e0df90874cd5e4ecf27058104aba (patch)
treefb75635c1187e6d776e1627878595c7137969fb6 /docs
parent221b8373cb8d55402ef5a8cb1f99fa0f9237d01e (diff)
downloadexternal_llvm-166a023f3ef3e0df90874cd5e4ecf27058104aba.zip
external_llvm-166a023f3ef3e0df90874cd5e4ecf27058104aba.tar.gz
external_llvm-166a023f3ef3e0df90874cd5e4ecf27058104aba.tar.bz2
Minor grammar and html fixes.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@99644 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs')
-rw-r--r--docs/ProgrammersManual.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/ProgrammersManual.html b/docs/ProgrammersManual.html
index f5c0878..e6349b1 100644
--- a/docs/ProgrammersManual.html
+++ b/docs/ProgrammersManual.html
@@ -1845,8 +1845,8 @@ void printNextInstruction(Instruction* inst) {
<p>Unfortunately, these implicit conversions come at a cost; they prevent
these iterators from conforming to standard iterator conventions, and thus
-from being usable with standard algorithms and containers. For example, it
-prevents the following code, where <tt>B</tt> is a <tt>BasicBlock</tt>,
+from being usable with standard algorithms and containers. For example, they
+prevent the following code, where <tt>B</tt> is a <tt>BasicBlock</tt>,
from compiling:</p>
<div class="doc_code">
@@ -1856,7 +1856,7 @@ from compiling:</p>
</div>
<p>Because of this, these implicit conversions may be removed some day,
-and <tt>operator*</tt> changed to return a pointer instead of a reference.
+and <tt>operator*</tt> changed to return a pointer instead of a reference.</p>
</div>