Skip to content

Commit 47ed43f

Browse files
authored
Capabilities.md: Fix typo (#626)
1 parent 96b39b9 commit 47ed43f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/Capabilities.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
What 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.
66
To let interact with the outside world, Wasm programs can be provided
77
with *capabilities*.
88

@@ -14,7 +14,7 @@ and runtime capabilities.
1414
In short, link-time capabilities are functions that you can import that
1515
do 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
1818
imports are chosen at link time. And if someone wants to virtualize those
1919
capabilities, or attenuate them to provide a restricted functionality, they
2020
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
2525
Being already instantiated, the instance already has some capabilities of
2626
its 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,
2929
because the linking we're talking about here is the linking that happens
3030
as part of instantiation.
3131

0 commit comments

Comments
 (0)