diff options
author | John Criswell <criswell@uiuc.edu> | 2005-07-15 19:25:12 +0000 |
---|---|---|
committer | John Criswell <criswell@uiuc.edu> | 2005-07-15 19:25:12 +0000 |
commit | a3f5110d5efab8d50c42b9a71fd44df0191a29dd (patch) | |
tree | 8a887b7fb54b88320d01a1240dfab9c880afc400 | |
parent | a0b5e035ea6a430b6e3d05553fc765b22cf02d68 (diff) | |
download | bcm5719-llvm-a3f5110d5efab8d50c42b9a71fd44df0191a29dd.tar.gz bcm5719-llvm-a3f5110d5efab8d50c42b9a71fd44df0191a29dd.zip |
Fixed some punctuation.
llvm-svn: 22443
-rw-r--r-- | llvm/docs/WritingAnLLVMPass.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/docs/WritingAnLLVMPass.html b/llvm/docs/WritingAnLLVMPass.html index 112705b9b8b..1146362ac55 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> |