diff --git a/docs/ProgrammersManual.html b/docs/ProgrammersManual.html
index 85d53dc2519..5a3ce5c202d 100644
--- a/docs/ProgrammersManual.html
+++ b/docs/ProgrammersManual.html
@@ -641,8 +641,8 @@ more complex example
Say that you're writing a FunctionPass and would like to count all the
locations in the entire module (that is, across every
-Function) where a certain function (i.e. some
-Function*) already in scope. As you'll learn later, you may
+Function) where a certain function (i.e., some
+Function*) is already in scope. As you'll learn later, you may
want to use an InstVisitor 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 InstVisitor around. In
@@ -869,8 +869,7 @@ For example:
Replacing individual instructions
Including "llvm/Transforms/Utils/BasicBlockUtils.h
-" permits use of two very useful replace functions:
+href="/doxygen/BasicBlockUtils_8h-source.html">llvm/Transforms/Utils/BasicBlockUtils.h" permits use of two very useful replace functions:
ReplaceInstWithValue and ReplaceInstWithInst.