[llvm-commits] [llvm] r125544 - /llvm/trunk/docs/tutorial/LangImpl3.html

Chris Lattner sabre at nondot.org
Mon Feb 14 16:24:32 PST 2011


Author: lattner
Date: Mon Feb 14 18:24:32 2011
New Revision: 125544

URL: http://llvm.org/viewvc/llvm-project?rev=125544&view=rev
Log:
Minor fixes to tutorial, patch by Benjamin Meyer!

Modified:
    llvm/trunk/docs/tutorial/LangImpl3.html

Modified: llvm/trunk/docs/tutorial/LangImpl3.html
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/tutorial/LangImpl3.html?rev=125544&r1=125543&r2=125544&view=diff
==============================================================================
--- llvm/trunk/docs/tutorial/LangImpl3.html (original)
+++ llvm/trunk/docs/tutorial/LangImpl3.html Mon Feb 14 18:24:32 2011
@@ -353,8 +353,8 @@
 </div>
 
 <p>The Module symbol table works just like the Function symbol table when it
-comes to name conflicts: if a new function is created with a name was previously
-added to the symbol table, it will get implicitly renamed when added to the
+comes to name conflicts: if a new function is created with a name that was previously
+added to the symbol table, the new function will get implicitly renamed when added to the
 Module.  The code above exploits this fact to determine if there was a previous
 definition of this function.</p>
 





More information about the llvm-commits mailing list