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/LangImpl03.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/LangImpl03.rst')
-rw-r--r-- | llvm/docs/tutorial/LangImpl03.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/docs/tutorial/LangImpl03.rst b/llvm/docs/tutorial/LangImpl03.rst index fab2ddaf882..1f2d20f40c7 100644 --- a/llvm/docs/tutorial/LangImpl03.rst +++ b/llvm/docs/tutorial/LangImpl03.rst @@ -261,7 +261,7 @@ Function Code Generation Code generation for prototypes and functions must handle a number of details, which make their code less beautiful than expression code generation, but allows us to illustrate some important points. First, -lets talk about code generation for prototypes: they are used both for +let's talk about code generation for prototypes: they are used both for function bodies and external function declarations. The code starts with: |