aboutsummaryrefslogtreecommitdiff
path: root/llvm/docs/tutorial
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2011-02-15 00:24:32 +0000
committerChris Lattner <sabre@nondot.org>2011-02-15 00:24:32 +0000
commitdf01939065a3d8be3344759478e0c6ef63a5fa77 (patch)
treef757626866d1442fdd017d7f5511acc9bce51cee /llvm/docs/tutorial
parent44e58526b95248a4599cd2ae7981e1d6115b5446 (diff)
downloadllvm-df01939065a3d8be3344759478e0c6ef63a5fa77.zip
llvm-df01939065a3d8be3344759478e0c6ef63a5fa77.tar.gz
llvm-df01939065a3d8be3344759478e0c6ef63a5fa77.tar.bz2
Minor fixes to tutorial, patch by Benjamin Meyer!
llvm-svn: 125544
Diffstat (limited to 'llvm/docs/tutorial')
-rw-r--r--llvm/docs/tutorial/LangImpl3.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/docs/tutorial/LangImpl3.html b/llvm/docs/tutorial/LangImpl3.html
index a8d96ac..fe09172 100644
--- a/llvm/docs/tutorial/LangImpl3.html
+++ b/llvm/docs/tutorial/LangImpl3.html
@@ -353,8 +353,8 @@ above.</p>
</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>