File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 2
2
3
3
What is a capability?
4
4
5
- The Wasm language has no syscall instructions or builtin I/O facilities.
5
+ The Wasm language has no syscall instructions or built-in I/O facilities.
6
6
To let interact with the outside world, Wasm programs can be provided
7
7
with * capabilities* .
8
8
@@ -14,7 +14,7 @@ and runtime capabilities.
14
14
In short, link-time capabilities are functions that you can import that
15
15
do things.
16
16
17
- They're called link-time capabilities, because the exports that satisfy the
17
+ They're called link-time capabilities because the exports that satisfy the
18
18
imports are chosen at link time. And if someone wants to virtualize those
19
19
capabilities, or attenuate them to provide a restricted functionality, they
20
20
may use a component that provides the needed exports and link them in
@@ -25,7 +25,7 @@ Strictly speaking, link-time capabilities in the Wasm component model are
25
25
Being already instantiated, the instance already has some capabilities of
26
26
its own that were granted to it at its own link time.
27
27
28
- Link-time capabilities may also be called * instantiation-time* capabilties ,
28
+ Link-time capabilities may also be called * instantiation-time* capabilities ,
29
29
because the linking we're talking about here is the linking that happens
30
30
as part of instantiation.
31
31
You can’t perform that action at this time.
0 commit comments