diff options
author | Stephane Sezer <sas@cd80.net> | 2018-05-08 18:43:27 +0000 |
---|---|---|
committer | Stephane Sezer <sas@cd80.net> | 2018-05-08 18:43:27 +0000 |
commit | 923d8ab1fa8cda2ebad7274c4bde101ba29fdbc6 (patch) | |
tree | 15a6109d642cbc74bb96de54431557035c46920d /llvm/docs/tutorial | |
parent | 869cbedc81376a68213c680bec20d2485f520658 (diff) | |
download | bcm5719-llvm-923d8ab1fa8cda2ebad7274c4bde101ba29fdbc6.tar.gz bcm5719-llvm-923d8ab1fa8cda2ebad7274c4bde101ba29fdbc6.zip |
[docs] Fix a typo in KaleidoscopeJIT tutorial
Summary: Just a missing end quote.
Reviewers: lhames
Subscribers: llvm-commits
Differential Revision: https://reviews.llvm.org/D46136
llvm-svn: 331794
Diffstat (limited to 'llvm/docs/tutorial')
-rw-r--r-- | llvm/docs/tutorial/BuildingAJIT2.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/docs/tutorial/BuildingAJIT2.rst b/llvm/docs/tutorial/BuildingAJIT2.rst index 95d0c1a6dd5..15c9c3586bc 100644 --- a/llvm/docs/tutorial/BuildingAJIT2.rst +++ b/llvm/docs/tutorial/BuildingAJIT2.rst @@ -224,7 +224,7 @@ layer interface. The interface consists of one typedef and five methods: | | emitAndFinalize. | +------------------+-----------------------------------------------------------+ | | Takes a given set of Modules and makes them "available | -| | for execution. This means that symbols in those modules | +| | for execution". This means that symbols in those modules | | | should be searchable via findSymbol and findSymbolIn, and | | | the address of the symbols should be read/writable (for | | | data symbols), or executable (for function symbols) after | |