Skip to content

Commit 85a2b00

Browse files
authored
Merge pull request #20 from radu-matei/random-fixes
chore: address a few typos
2 parents 8d11644 + e03b70f commit 85a2b00

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

design/high-level/UseCases.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ sandboxing technology):
4848
#### Invoking component exports from the host
4949

5050
Once a host chooses to embed wasm (for one of the preceding reasons), the first
51-
design choice is how host executes the wasm code. The core wasm [start function]
51+
design choice is how the host executes the wasm code. The core wasm [start function]
5252
is sometimes used for this purpose, however the lack of parameters or results
5353
miss out on several use cases listed below, which suggest the use of exported
5454
wasm functions with typed signatures instead. However, there are a number of
@@ -325,8 +325,6 @@ to call imports, which could break other components' single-threaded assumptions
325325
the imported function to have been explicitly `shared` and thus callable from
326326
any `fork`ed thread.
327327

328-
329-
330328
[RLBox]: https://plsyssec.github.io/rlbox_sandboxing_api/sphinx/
331329
[Principle of Least Authority]: https://en.wikipedia.org/wiki/Principle_of_least_privilege
332330
[Modular Programming]: https://en.wikipedia.org/wiki/Modular_programming

design/mvp/Explainer.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -398,7 +398,7 @@ appear syntactically within a `(module ...)` S-expression, there is never a
398398
need to syntactically distinguish `functype` from `core:functype` in the text
399399
format: the context dictates which one a `(func ...)` S-expression parses into.
400400

401-
A `valuetype` describes a single `intertype` value this is to be consumed
401+
A `valuetype` describes a single `intertype` value that is to be consumed
402402
exactly once during component instantiation. How this happens is described
403403
below along with [`start` definitions](#start-definitions).
404404

0 commit comments

Comments
 (0)