Skip to content

Commit

Permalink
Fix some typos
Browse files Browse the repository at this point in the history
  • Loading branch information
alexcrichton committed Dec 7, 2022
1 parent 6b2b01c commit 95a21b4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions design/mvp/WIT.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ would correspond to:

```wasm
(component
(import "host" (insance $host
(import "host" (instance $host
(export "log" (func (param "msg" string)))
))
;; ...
Expand Down Expand Up @@ -157,7 +157,7 @@ reusability. This enables a sort of module system for WIT syntax where files may
import from one another.

> **Note**: The precise semantics of imports and how everything maps out is
> still being design. Basic filesystem-based organization works but it's
> still being designed. Basic filesystem-based organization works but it's
> intended to extend to URL-based organization in the near future. For example
> the strings below are intended to integrate into a registry-based workflow as
> well in addition to looking up files on the filesystem.
Expand Down Expand Up @@ -343,7 +343,7 @@ world my-world {
}
```

This is an invalid WIT document due because `my-world` needs to import two
This is an invalid WIT document because `my-world` needs to import two
unique interfaces called `shared`. To disambiguate a manual import is required:

```
Expand Down

0 comments on commit 95a21b4

Please sign in to comment.