Skip to content

Commit fce82ed

Browse files
typo fix (#149)
compliment (a polite expression of praise or admiration) -> complement (a thing that completes or brings to perfection)
1 parent c0496a7 commit fce82ed

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/introduction/introduction.all.en-us.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Let's do a brief introduction into major concepts of WebAssembly:
44

55
- WebAssembly is a compile-targeted language for running bytecode on the web.
6-
- Relative to Javascript, WebAssembly offers predictable performance. It is not inherently **faster** than Javascript, but it **can be faster than JavaScript** in the correct use case. Such as **computationally intensive tasks**, like nested loops or handling large amounts of data. Therefore, **WebAssembly is a compliment to JavaScript, and not a replacement**.
6+
- Relative to Javascript, WebAssembly offers predictable performance. It is not inherently **faster** than Javascript, but it **can be faster than JavaScript** in the correct use case. Such as **computationally intensive tasks**, like nested loops or handling large amounts of data. Therefore, **WebAssembly is a complement to JavaScript, and not a replacement**.
77
- WebAssembly is extremely portable. WebAssembly runs on: all major web browsers, V8 runtimes like [Node.js](https://nodejs.org/en/), and independent Wasm runtimes like [Wasmtime](https://wasmtime.dev/), [Lucet](https://github.com/bytecodealliance/lucet), and [Wasmer](https://github.com/wasmerio/wasmer).
88
- WebAssembly has Linear Memory, in other words, one big expandable array. And in the context of Javascript, synchronously accessible by Javascript and Wasm.
99
- WebAssembly can export functions and constants, And in the context of Javascript, synchronously accessible by Javascript and Wasm.

0 commit comments

Comments
 (0)