summaryrefslogtreecommitdiff
path: root/docs/WritingAnLLVMPass.html
diff options
context:
space:
mode:
authorJohn Criswell <criswell@uiuc.edu>2005-07-15 19:25:12 +0000
committerJohn Criswell <criswell@uiuc.edu>2005-07-15 19:25:12 +0000
commit2382ff7fbe41e0b3d0c1385f619af260b45b23d8 (patch)
treebac8a1d9ee422fd5f761c8377a4afb8172fa8183 /docs/WritingAnLLVMPass.html
parent16b04f3d5e2a602333a7f64d66e3b78bc1679110 (diff)
Fixed some punctuation.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@22443 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs/WritingAnLLVMPass.html')
-rw-r--r--docs/WritingAnLLVMPass.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/WritingAnLLVMPass.html b/docs/WritingAnLLVMPass.html
index 112705b9b8b..1146362ac55 100644
--- a/docs/WritingAnLLVMPass.html
+++ b/docs/WritingAnLLVMPass.html
@@ -471,9 +471,9 @@ following signature:</p>
<b>virtual bool</b> runOnModule(Module &amp;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>