Fix some spelling and grammar.
authorMisha Brukman <brukman+llvm@gmail.com>
Mon, 8 Mar 2004 23:06:46 +0000 (23:06 +0000)
committerMisha Brukman <brukman+llvm@gmail.com>
Mon, 8 Mar 2004 23:06:46 +0000 (23:06 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@12244 91177308-0d34-0410-b5e6-96231b3b80d8

docs/WritingAnLLVMPass.html

index 4ca6d4e0730112bb6e5f071a3a7af238aa6347ba..39d4e1668a332890ee3298b0a36b9f5036d3c826 100644 (file)
@@ -1381,8 +1381,8 @@ approach is that none of the <tt>PassManager</tt> features can be used for
 timing and debugging the actual <b>loading</b> of the module from disk or
 standard input.</p>
 
-<p>To solve this problem, eventually the <tt>PassManger</tt> class will accept a
-<tt>ModuleSource</tt> object instead of a Module itself.  When complete, this
+<p>To solve this problem, eventually the <tt>PassManager</tt> class will accept
+<tt>ModuleSource</tt> object instead of a Module itself.  When complete, this
 will also allow for streaming of functions out of the bytecode representation,
 allowing us to avoid holding the entire program in memory at once if we only are
 dealing with <a href="#FunctionPass">FunctionPass</a>es.</p>
@@ -1396,7 +1396,7 @@ capable of this, the loader just needs to be reworked a bit.</p>
 
 <!-- _______________________________________________________________________ -->
 <div class="subsubsection">
-<a name="PassFunctionPass"><tt>Pass</tt>'s requiring <tt>FunctionPass</tt>'s</a>
+<a name="PassFunctionPass"><tt>Pass</tt>es requiring <tt>FunctionPass</tt>es</a>
 </div>
 
 <div class="doc_text">