@@ -42,7 +42,7 @@ While one might naively expect that the idea of "WebAssembly threads" is
42
42
something like "add pthreads" or "add ` std::thread ` " to wasm, the current
43
43
proposal for threads in WebAssembly is actually quite different! Instead of
44
44
providing a full library experience the threads proposal is instead specifying
45
- the fundamental building blocks upon wich you can build a threading library.
45
+ the fundamental building blocks upon which you can build a threading library.
46
46
47
47
#### Atomic Instructions
48
48
@@ -387,7 +387,7 @@ instance of memory!
387
387
388
388
Instead we'll need to arrange for memory to be imported not exported. That can
389
389
be a bit of a pain to set up and work with, though, so ` wasm-bindgen ` can
390
- continue to take care of instantation in the JS bindings so users don't have to
390
+ continue to take care of instantiation in the JS bindings so users don't have to
391
391
worry about it.
392
392
393
393
Note that for now LLVM/LLD also don't currently implement a memory object that's
@@ -452,7 +452,7 @@ is* on the web.
452
452
> no time at all to find a raytracer, integrate it, compile it to wasm, and
453
453
> run in a browser.
454
454
455
- With raytracing (or at least how this raytracer worked) it's an embarassingly
455
+ With raytracing (or at least how this raytracer worked) it's an embarrassingly
456
456
parallel task as all pixels of an image are rendered entirely independently of
457
457
all others. This meant we could rig up a way to [ fan out work for pixels amongst
458
458
worker threads] [ worker-threads ] pretty easily.
0 commit comments