summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorMisha Brukman <brukman+llvm@gmail.com>2003-07-28 19:21:20 +0000
committerMisha Brukman <brukman+llvm@gmail.com>2003-07-28 19:21:20 +0000
commit79223edea6fcda45c01bdf5198c0f50b15f388be (patch)
tree5fb33846294b138a2c32845402b116a4129e261e /docs
parent3ce4ac62a08ed8a489074a8cc13a90a38db981eb (diff)
downloadllvm-79223edea6fcda45c01bdf5198c0f50b15f388be.tar.gz
llvm-79223edea6fcda45c01bdf5198c0f50b15f388be.tar.bz2
llvm-79223edea6fcda45c01bdf5198c0f50b15f388be.tar.xz
Added comma after `i.e.'
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7367 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs')
-rw-r--r--docs/ProgrammersManual.html7
1 files changed, 3 insertions, 4 deletions
diff --git a/docs/ProgrammersManual.html b/docs/ProgrammersManual.html
index 85d53dc251..5a3ce5c202 100644
--- a/docs/ProgrammersManual.html
+++ b/docs/ProgrammersManual.html
@@ -641,8 +641,8 @@ more complex example </h4><ul>
Say that you're writing a FunctionPass and would like to count all the
locations in the entire module (that is, across every
-<tt>Function</tt>) where a certain function (i.e. some
-<tt>Function</tt>*) already in scope. As you'll learn later, you may
+<tt>Function</tt>) where a certain function (i.e., some
+<tt>Function</tt>*) is already in scope. As you'll learn later, you may
want to use an <tt>InstVisitor</tt> to accomplish this in a much more
straightforward manner, but this example will allow us to explore how
you'd do it if you didn't have <tt>InstVisitor</tt> around. In
@@ -869,8 +869,7 @@ For example:<p>
<p><i>Replacing individual instructions</i></p>
<p>
Including "<a
-href="/doxygen/BasicBlockUtils_8h-source.html">llvm/Transforms/Utils/BasicBlockUtils.h
-</a>" permits use of two very useful replace functions:
+href="/doxygen/BasicBlockUtils_8h-source.html">llvm/Transforms/Utils/BasicBlockUtils.h</a>" permits use of two very useful replace functions:
<tt>ReplaceInstWithValue</tt> and <tt>ReplaceInstWithInst</tt>.
<ul>