diff --git a/docs/WritingAnLLVMPass.html b/docs/WritingAnLLVMPass.html index 97db123ed7d..fe93a87e97a 100644 --- a/docs/WritingAnLLVMPass.html +++ b/docs/WritingAnLLVMPass.html @@ -751,7 +751,7 @@ loop nest order such that outer most loop is processed last.

LoopPass subclasses are allowed to update loop nest using LPPassManager interface. Implementing a loop pass is usually -straightforward. Looppass's may overload three virtual methods to +straightforward. LoopPass'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.

@@ -829,7 +829,7 @@ region is processed last.

RegionPass subclasses are allowed to update the region tree by using the RGPassManager interface. You may overload three virtual methods of -RegionPass to implementing your own region pass is usually. All these +RegionPass to implement your own region pass. All these methods should return true if they modified the program, or false if they didn not.