OSDN Git Service

[docs] Fix a typo in KaleidoscopeJIT tutorial
authorStephane Sezer <sas@cd80.net>
Tue, 8 May 2018 18:43:27 +0000 (18:43 +0000)
committerStephane Sezer <sas@cd80.net>
Tue, 8 May 2018 18:43:27 +0000 (18:43 +0000)
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

docs/tutorial/BuildingAJIT2.rst

index 95d0c1a..15c9c35 100644 (file)
@@ -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 |