From 0c735ea01104a9af60f5dc44f74427d0a247722e Mon Sep 17 00:00:00 2001 From: MichalGrzymek Date: Tue, 6 Feb 2024 03:03:11 +0100 Subject: [PATCH] Fix "emscripten emit" typo in Optimizing Code - WebAssembly section (#21269) --- 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 97f1ba86547f..987b876390a4 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 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: