[PATCH] D105899: Fixed a minor writing error. The text was hard to understand, so I reviewed it.

Yuichi Yoshida via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Tue Jul 13 08:43:35 PDT 2021


sonson created this revision.
sonson requested review of this revision.
Herald added a project: LLVM.
Herald added a subscriber: llvm-commits.

Repository:
  rG LLVM Github Monorepo

https://reviews.llvm.org/D105899

Files:
  llvm/docs/tutorial/BuildingAJIT2.rst


Index: llvm/docs/tutorial/BuildingAJIT2.rst
===================================================================
--- llvm/docs/tutorial/BuildingAJIT2.rst
+++ llvm/docs/tutorial/BuildingAJIT2.rst
@@ -224,9 +224,9 @@
 of the ``add`` method.
 
 These two operations, ``add`` and ``emit``, together constitute the layer
-concept: A layer is a way to wrap a portion of a compiler pipeline (in this case
-the "opt" phase of an LLVM compiler) whose API is is opaque to ORC in an
-interface that allows ORC to invoke it when needed. The add method takes an
+concept: A layer is a way to wrap a part of a compiler pipeline (in this case
+the "opt" phase of an LLVM compiler) whose API is opaque to ORC with an
+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 the
 Layer's emit method when any symbol defined by that module is requested. Layers


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D105899.358278.patch
Type: text/x-patch
Size: 1004 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20210713/c6f247a9/attachment.bin>


More information about the llvm-commits mailing list