[llvm] r331794 - [docs] Fix a typo in KaleidoscopeJIT tutorial

Stephane Sezer via llvm-commits llvm-commits at lists.llvm.org
Tue May 8 11:43:27 PDT 2018


Author: sas
Date: Tue May  8 11:43:27 2018
New Revision: 331794

URL: http://llvm.org/viewvc/llvm-project?rev=331794&view=rev
Log:
[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

Modified:
    llvm/trunk/docs/tutorial/BuildingAJIT2.rst

Modified: llvm/trunk/docs/tutorial/BuildingAJIT2.rst
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/tutorial/BuildingAJIT2.rst?rev=331794&r1=331793&r2=331794&view=diff
==============================================================================
--- llvm/trunk/docs/tutorial/BuildingAJIT2.rst (original)
+++ llvm/trunk/docs/tutorial/BuildingAJIT2.rst Tue May  8 11:43:27 2018
@@ -224,7 +224,7 @@ layer interface. The interface consists
 |                  | 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 |




More information about the llvm-commits mailing list