@@ -16,7 +16,7 @@ accessible. If it is not, please submit a patch (:doc:`Contributing`) or file a
1616bug (:doc: `HowToSubmitABug `).
1717
1818JITLink is a library for :ref: `jit_linking `. It was built to support the ORC JIT
19- APIs and is most commonly accesed via ORC's ObjectLinkingLayer API. JITLink was
19+ APIs and is most commonly accessed via ORC's ObjectLinkingLayer API. JITLink was
2020developed with the aim of supporting the full set of features provided by each
2121object format; including static initializers, exception handling, thread local
2222variables, and language runtime registration. Supporting these features enables
@@ -520,7 +520,7 @@ certain points by the introduction of JITLink :ref:`passes`:
520520 working memory and fixed up. Passes run at this stage can make late
521521 optimizations to the graph and content based on address layout.
522522
523- Notable use cases: GOT and PLT relaxation, where GOT and PLT acceses are
523+ Notable use cases: GOT and PLT relaxation, where GOT and PLT accesses are
524524 bypassed for fixup targets that are directly accessible under the assigned
525525 memory layout.
526526
@@ -787,7 +787,7 @@ for them by an ``ObjectLinkingLayer`` instance, but they can be created manually
787787 ``ObjectLinkingLayer `` usually creates ``LinkGraphs ``.
788788
789789 #. ``createLinkGraph_<Object-Format>_<Architecture> `` can be used when
790- both the object format and achitecture are known ahead of time.
790+ both the object format and architecture are known ahead of time.
791791
792792 #. ``createLinkGraph_<Object-Format> `` can be used when the object format is
793793 known ahead of time, but the architecture is not. In this case the
@@ -894,7 +894,7 @@ main function using the -args option:
894894 printf(" arg %i is \" %s\" \n" , i, argv[i]);
895895 }
896896
897- % cat pring -args-main.c
897+ % cat print -args-main.c
898898 void print_args(int argc, char * argv[]);
899899
900900 int main(int argc, char * argv[]) {
@@ -1093,7 +1093,7 @@ Major outstanding projects include:
10931093JITLink Availability and Feature Status
10941094---------------------------------------
10951095
1096- .. list-table :: Avalability and Status
1096+ .. list-table :: Availability and Status
10971097 :widths: 10 30 30 30
10981098 :header-rows: 1
10991099
0 commit comments