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 22
33What is a capability?
44
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.
66To let interact with the outside world, Wasm programs can be provided
77with * capabilities* .
88
@@ -14,7 +14,7 @@ and runtime capabilities.
1414In short, link-time capabilities are functions that you can import that
1515do things.
1616
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
1818imports are chosen at link time. And if someone wants to virtualize those
1919capabilities, or attenuate them to provide a restricted functionality, they
2020may 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
2525Being already instantiated, the instance already has some capabilities of
2626its own that were granted to it at its own link time.
2727
28- Link-time capabilities may also be called * instantiation-time* capabilties ,
28+ Link-time capabilities may also be called * instantiation-time* capabilities ,
2929because the linking we're talking about here is the linking that happens
3030as part of instantiation.
3131
You can’t perform that action at this time.
0 commit comments