diff options
author | Chris Lattner <sabre@nondot.org> | 2011-02-15 00:24:32 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2011-02-15 00:24:32 +0000 |
commit | 155ced809260c4ce203df1b66f78f66584d44a80 (patch) | |
tree | 607a9a77b77858ab1c22faa09587fd2289bd4363 /docs | |
parent | 04b2f0d99feb9cdf87eb8f35483816d757d170dd (diff) | |
download | external_llvm-155ced809260c4ce203df1b66f78f66584d44a80.zip external_llvm-155ced809260c4ce203df1b66f78f66584d44a80.tar.gz external_llvm-155ced809260c4ce203df1b66f78f66584d44a80.tar.bz2 |
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
Diffstat (limited to 'docs')
-rw-r--r-- | docs/tutorial/LangImpl3.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/tutorial/LangImpl3.html b/docs/tutorial/LangImpl3.html index a8d96ac..fe09172 100644 --- a/docs/tutorial/LangImpl3.html +++ b/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> |