From 2382ff7fbe41e0b3d0c1385f619af260b45b23d8 Mon Sep 17 00:00:00 2001
From: John Criswell
Date: Fri, 15 Jul 2005 19:25:12 +0000
Subject: [PATCH] Fixed some punctuation.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@22443 91177308-0d34-0410-b5e6-96231b3b80d8
---
docs/WritingAnLLVMPass.html | 6 +++---
1 file 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:
virtual bool runOnModule(Module &M) = 0;
-The runOnModule method performs the interesting work of the pass,
-and should return true if the module was modified by the transformation, false
-otherwise.
+The runOnModule method performs the interesting work of the pass.
+It should return true if the module was modified by the transformation and
+false otherwise.
--
2.34.1