From 0d91c119250b9163ade6a854f0e0db11776dcc1e Mon Sep 17 00:00:00 2001 From: Dan Gohman Date: Fri, 26 Mar 2010 19:51:14 +0000 Subject: [PATCH] Minor grammar and html fixes. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@99644 91177308-0d34-0410-b5e6-96231b3b80d8 --- docs/ProgrammersManual.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/ProgrammersManual.html b/docs/ProgrammersManual.html index f5c08786c44..e6349b1ec82 100644 --- a/docs/ProgrammersManual.html +++ b/docs/ProgrammersManual.html @@ -1845,8 +1845,8 @@ void printNextInstruction(Instruction* inst) {

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 B is a BasicBlock, +from being usable with standard algorithms and containers. For example, they +prevent the following code, where B is a BasicBlock, from compiling:

@@ -1856,7 +1856,7 @@ from compiling:

Because of this, these implicit conversions may be removed some day, -and operator* changed to return a pointer instead of a reference. +and operator* changed to return a pointer instead of a reference.

-- 2.34.1