From 9c5922b185311f3ebd086c6657ec7d6888013c97 Mon Sep 17 00:00:00 2001 From: Michal Grzymek Date: Tue, 6 Feb 2024 02:25:49 +0100 Subject: [PATCH 1/2] Fix typo in Optimizing Code - WebAssembly section --- site/source/docs/optimizing/Optimizing-Code.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/site/source/docs/optimizing/Optimizing-Code.rst b/site/source/docs/optimizing/Optimizing-Code.rst index 97f1ba86547f6..48d54f170f3e2 100644 --- a/site/source/docs/optimizing/Optimizing-Code.rst +++ b/site/source/docs/optimizing/Optimizing-Code.rst @@ -84,7 +84,7 @@ There are several flags you can :ref:`pass to the compiler WebAssembly =========== -Emscripten will emit WebAssembly by default. You can switch that off with ``-sWASM=0`` (in which case emscripten emit JavaScript), which is necessary if you want the output to run in places where Wasm support is not present yet, but the downside is larger and slower code. +Emscripten emits WebAssembly by default. You can switch that off with ``-sWASM=0`` (in which case emscripten emits JavaScript), which is necessary if you want the output to run in places where Wasm support is not present yet, but the downside is larger and slower code. .. _optimizing-code-size: From f89bb6728fe88bf66476ab442dbe973e517045d7 Mon Sep 17 00:00:00 2001 From: Michal Grzymek Date: Tue, 6 Feb 2024 02:27:20 +0100 Subject: [PATCH 2/2] improve wordfeel --- site/source/docs/optimizing/Optimizing-Code.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/site/source/docs/optimizing/Optimizing-Code.rst b/site/source/docs/optimizing/Optimizing-Code.rst index 48d54f170f3e2..987b876390a49 100644 --- a/site/source/docs/optimizing/Optimizing-Code.rst +++ b/site/source/docs/optimizing/Optimizing-Code.rst @@ -84,7 +84,7 @@ There are several flags you can :ref:`pass to the compiler WebAssembly =========== -Emscripten emits WebAssembly by default. You can switch that off with ``-sWASM=0`` (in which case emscripten emits JavaScript), which is necessary if you want the output to run in places where Wasm support is not present yet, but the downside is larger and slower code. +Emscripten emits WebAssembly by default. You can switch that off with ``-sWASM=0`` (in which case emscripten will emit JavaScript), which is necessary if you want the output to run in places where Wasm support is not present yet, but the downside is larger and slower code. .. _optimizing-code-size: