From: Chris Lattner
Date: Tue, 15 Feb 2011 00:24:32 +0000 (+0000)
Subject: Minor fixes to tutorial, patch by Benjamin Meyer!
X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=155ced809260c4ce203df1b66f78f66584d44a80;p=oota-llvm.git
Minor fixes to tutorial, patch by Benjamin Meyer!
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@125544 91177308-0d34-0410-b5e6-96231b3b80d8
---
diff --git a/docs/tutorial/LangImpl3.html b/docs/tutorial/LangImpl3.html
index a8d96ac6b70..fe0917227db 100644
--- a/docs/tutorial/LangImpl3.html
+++ b/docs/tutorial/LangImpl3.html
@@ -353,8 +353,8 @@ above.
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.