Skip to content

Commit

Permalink
fix fixable flaws in /es/docs/WebAssembly/Concepts (#110)
Browse files Browse the repository at this point in the history
  • Loading branch information
peterbe authored Mar 16, 2021
1 parent 20f3848 commit dfa1620
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions files/es/webassembly/concepts/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ <h3 id="Portando_desde_CC">Portando desde C/C++</h3>

<p>La herramienta Emscripten está disponible para casi cualquier tipo de código C/C++ y compila en un módulo .wasm, además del código "pegamento" necesario en JavaScript, necesario para cargar y ejecutar el módulo, y un documento HTML donde se muestre el resultado del código.</p>

<p><img alt="" src="https://mdn.mozillademos.org/files/14647/emscripten-diagram.png" style="display: block; height: 104px; margin: 0px auto; width: 764px;"></p>
<p><img alt="" src="emscripten-diagram.png" style="display: block; margin: 0px auto;"></p>

<p>Resumiendo, el proceso es el que sigue:</p>

Expand All @@ -120,7 +120,7 @@ <h3 id="Portando_desde_CC">Portando desde C/C++</h3>

<p>The generated HTML document loads the JavaScript glue file and writes stdout to a {{htmlelement("textarea")}}. If the application uses OpenGL, the HTML also contains a {{htmlelement("canvas")}} element that is used as the rendering target. It’s very easy to modify the Emscripten output and turn it into whatever web app you require.</p>

<p>You can find full documentation on Emscripten at <a href="https://emscripten.org">emscripten.org</a>, and a guide to implementing the toolchain and compiling your own C/C++ app across to wasm at <a href="https://developer.mozilla.org/en-US/docs/WebAssembly/C_to_wasm">Compiling from C/C++ to WebAssembly</a>.</p>
<p>You can find full documentation on Emscripten at <a href="https://emscripten.org">emscripten.org</a>, and a guide to implementing the toolchain and compiling your own C/C++ app across to wasm at <a href="/en-US/docs/WebAssembly/C_to_wasm">Compiling from C/C++ to WebAssembly</a>.</p>

<h3 id="Writing_WebAssembly_directly">Writing WebAssembly directly</h3>

Expand Down

0 comments on commit dfa1620

Please sign in to comment.