summaryrefslogtreecommitdiff
path: root/docs/tutorial
diff options
context:
space:
mode:
authorStephane Sezer <sas@cd80.net>2018-05-08 18:43:27 +0000
committerStephane Sezer <sas@cd80.net>2018-05-08 18:43:27 +0000
commitd60939522edf52aaff71a3dd205061875e36fcae (patch)
tree277376c01b5dd5cb925966b3140cfbd46709ac99 /docs/tutorial
parent722943122f9bd956c180dddc10a5977628ce7fea (diff)
[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 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@331794 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs/tutorial')
-rw-r--r--docs/tutorial/BuildingAJIT2.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/tutorial/BuildingAJIT2.rst b/docs/tutorial/BuildingAJIT2.rst
index 95d0c1a6dd5..15c9c3586bc 100644
--- a/docs/tutorial/BuildingAJIT2.rst
+++ b/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 |