diff options
author | Sjoerd Meijer <sjoerd.meijer@arm.com> | 2018-03-29 12:31:06 +0000 |
---|---|---|
committer | Sjoerd Meijer <sjoerd.meijer@arm.com> | 2018-03-29 12:31:06 +0000 |
commit | 4f8f1e5115efd6c0bafbde0f1993b1298e85c3dd (patch) | |
tree | 9bd2f433b87afeb23bdb0c47d195699d2b6ceb0d /llvm/docs/tutorial/LangImpl04.rst | |
parent | 71c5f3fffddab08b8a477ada553790ccb2199483 (diff) | |
download | bcm5719-llvm-4f8f1e5115efd6c0bafbde0f1993b1298e85c3dd.tar.gz bcm5719-llvm-4f8f1e5115efd6c0bafbde0f1993b1298e85c3dd.zip |
[Kaleidoscope] Tiny typo fixes
Fixes for "lets" references which should be "let's" in the Kaleidoscope
tutorial.
Patch by: Robin Dupret
Differential Revision: https://reviews.llvm.org/D44990
llvm-svn: 328772
Diffstat (limited to 'llvm/docs/tutorial/LangImpl04.rst')
-rw-r--r-- | llvm/docs/tutorial/LangImpl04.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/docs/tutorial/LangImpl04.rst b/llvm/docs/tutorial/LangImpl04.rst index b8e55b0fb21..15644818389 100644 --- a/llvm/docs/tutorial/LangImpl04.rst +++ b/llvm/docs/tutorial/LangImpl04.rst @@ -203,7 +203,7 @@ Another good source of ideas can come from looking at the passes that experiment with passes from the command line, so you can see if they do anything. -Now that we have reasonable code coming out of our front-end, lets talk +Now that we have reasonable code coming out of our front-end, let's talk about executing it! Adding a JIT Compiler @@ -335,7 +335,7 @@ Recall, however, that the module we created a few lines earlier (via ``InitializeModuleAndPassManager``) is still open and waiting for new code to be added. -With just these two changes, lets see how Kaleidoscope works now! +With just these two changes, let's see how Kaleidoscope works now! :: @@ -514,7 +514,7 @@ In HandleDefinition, we add two lines to transfer the newly defined function to the JIT and open a new module. In HandleExtern, we just need to add one line to add the prototype to FunctionProtos. -With these changes made, lets try our REPL again (I removed the dump of the +With these changes made, let's try our REPL again (I removed the dump of the anonymous functions this time, you should get the idea by now :) : :: |