From 5949689e2ed127250367c076647f763fb8c6afd9 Mon Sep 17 00:00:00 2001 From: Jerome Leroux Date: Tue, 24 Dec 2024 09:28:14 +0100 Subject: [PATCH] Update ApplicationDeveloperGuide/runtime.rst --- ApplicationDeveloperGuide/runtime.rst | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ApplicationDeveloperGuide/runtime.rst b/ApplicationDeveloperGuide/runtime.rst index 92ce9f6ce..310b28860 100644 --- a/ApplicationDeveloperGuide/runtime.rst +++ b/ApplicationDeveloperGuide/runtime.rst @@ -23,7 +23,8 @@ Basically, the source code is first compiled by a compiler to produce an archite - The C source code is compiled by a C compiler [2]_ into `WebAssembly `_, also called `Wasm`. Finally, the binary code is loaded and linked by a tool named the :ref:`SOAR `. -The SOAR loads both Java bytecode ``.class`` files and WebAssembly ``.wasm`` files as long as other application-related :ref:`files and resources ` and links it all to produce the final binary file that the :ref:`Core Engine ` will execute. +The SOAR loads both Java bytecode (``.class`` files), WebAssembly (``.wasm`` files), and other application-related :ref:`files and resources `. +It links these components to produce the final binary file executed by the :ref:`Core Engine `. .. figure:: images/build-flow.png