diff --git a/llvm/docs/WritingAnLLVMPass.html b/llvm/docs/WritingAnLLVMPass.html index 112705b9b8bc..1146362ac55d 100644 --- a/llvm/docs/WritingAnLLVMPass.html +++ b/llvm/docs/WritingAnLLVMPass.html @@ -471,9 +471,9 @@ following signature:</p> <b>virtual bool</b> runOnModule(Module &M) = 0; </pre> -<p>The <tt>runOnModule</tt> method performs the interesting work of the pass, -and should return true if the module was modified by the transformation, false -otherwise.</p> +<p>The <tt>runOnModule</tt> method performs the interesting work of the pass. +It should return true if the module was modified by the transformation and +false otherwise.</p> </div>