diff options
author | Hiroshi Inoue <inouehrs@jp.ibm.com> | 2018-01-16 13:19:48 +0000 |
---|---|---|
committer | Hiroshi Inoue <inouehrs@jp.ibm.com> | 2018-01-16 13:19:48 +0000 |
commit | 760c0c9ed3fc66c85eee84f7529583c083ea7b64 (patch) | |
tree | 8ac976d8d3abf19cb7395db3765b47950371a967 /llvm/docs/tutorial | |
parent | c961e25e074fc30c1522e43197e3c233c5a550e4 (diff) | |
download | bcm5719-llvm-760c0c9ed3fc66c85eee84f7529583c083ea7b64.tar.gz bcm5719-llvm-760c0c9ed3fc66c85eee84f7529583c083ea7b64.zip |
[NFC] fix trivial typos in documents
"the the" -> "the"
llvm-svn: 322552
Diffstat (limited to 'llvm/docs/tutorial')
-rw-r--r-- | llvm/docs/tutorial/LangImpl04.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/docs/tutorial/LangImpl04.rst b/llvm/docs/tutorial/LangImpl04.rst index 921c4dcc21a..b8e55b0fb21 100644 --- a/llvm/docs/tutorial/LangImpl04.rst +++ b/llvm/docs/tutorial/LangImpl04.rst @@ -380,7 +380,7 @@ demonstrates very basic functionality, but can we do more? Function definitions and calls also work, but something went very wrong on that last line. The call looks valid, so what happened? As you may have guessed from -the the API a Module is a unit of allocation for the JIT, and testfunc was part +the API a Module is a unit of allocation for the JIT, and testfunc was part of the same module that contained anonymous expression. When we removed that module from the JIT to free the memory for the anonymous expression, we deleted the definition of ``testfunc`` along with it. Then, when we tried to call |