Fix a bit of nonsense.
authorJay Foad <jay.foad@gmail.com>
Thu, 7 Apr 2011 12:41:09 +0000 (12:41 +0000)
committerJay Foad <jay.foad@gmail.com>
Thu, 7 Apr 2011 12:41:09 +0000 (12:41 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@129073 91177308-0d34-0410-b5e6-96231b3b80d8

docs/WritingAnLLVMPass.html

index 97db123ed7dde4bd7d48d8f72ba563f7e134d411..fe93a87e97ac7e40224008e627b5dc51e77a365e 100644 (file)
@@ -751,7 +751,7 @@ loop nest order such that outer most loop is processed last. </p>
 
 <p> <tt>LoopPass</tt> subclasses are allowed to update loop nest using
 <tt>LPPassManager</tt> interface. Implementing a loop pass is usually
-straightforward. <tt>Looppass</tt>'s may overload three virtual methods to
+straightforward. <tt>LoopPass</tt>'s may overload three virtual methods to
 do their work. All these methods should return true if they modified the 
 program, or false if they didn't. </p>
 </div>
@@ -829,7 +829,7 @@ region is processed last.  </p>
 
 <p> <tt>RegionPass</tt> subclasses are allowed to update the region tree by using
 the <tt>RGPassManager</tt> interface. You may overload three virtual methods of
-<tt>RegionPass</tt> to implementing your own region pass is usually. All these
+<tt>RegionPass</tt> to implement your own region pass. All these
 methods should return true if they modified the program, or false if they didn not.
 </p>
 </div>