diff --git a/site/source/docs/tools_reference/settings_reference.rst b/site/source/docs/tools_reference/settings_reference.rst index e71191a2961cf..dfc4583a879c1 100644 --- a/site/source/docs/tools_reference/settings_reference.rst +++ b/site/source/docs/tools_reference/settings_reference.rst @@ -1166,8 +1166,6 @@ Emit instructions for the new Wasm exception handling proposal with exnref, which was adopted on Oct 2023. The implementation of the new proposal is still in progress and this feature is currently experimental. -.. note:: Applicable during both linking and compilation - Default value: false .. _nodejs_catch_exit: diff --git a/src/settings.js b/src/settings.js index 1c69c2ff0272e..981c44fa3b48a 100644 --- a/src/settings.js +++ b/src/settings.js @@ -781,7 +781,7 @@ var EXCEPTION_STACK_TRACES = false; // Emit instructions for the new Wasm exception handling proposal with exnref, // which was adopted on Oct 2023. The implementation of the new proposal is // still in progress and this feature is currently experimental. -// [compile+link] +// [link] var WASM_EXNREF = false; // Emscripten throws an ExitStatus exception to unwind when exit() is called.