diff --git a/llvm/docs/tutorial/BuildingAJIT2.rst b/llvm/docs/tutorial/BuildingAJIT2.rst --- a/llvm/docs/tutorial/BuildingAJIT2.rst +++ b/llvm/docs/tutorial/BuildingAJIT2.rst @@ -229,7 +229,7 @@ interface that ORC can call as needed. The add method takes an module in some input program representation (in this case an LLVM IR module) and stores it in the target ``JITDylib``, arranging for it to be passed back -to layer's emit method when someone requests any symbols defined by the module. +to layer's emit method when any symbol defined by that module is requested. Each layer can complete its own work by calling the ``emit`` method of its base layer. For example, in this tutorial our IRTransformLayer calls through to our IRCompileLayer to compile the transformed IR, and our IRCompileLayer in