Skip to content
This repository has been archived by the owner on Sep 29, 2023. It is now read-only.

Update to the newest WITs #17

Merged
merged 1 commit into from
May 26, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion wit/poll.wit
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/// A poll API intended to let users wait for I/O events on multiple handles
/// at once.
default interface poll {
interface poll {
/// A "pollable" handle.
///
/// This is conceptually represents a `stream<_, _>`, or in other words,
Expand Down
6 changes: 4 additions & 2 deletions wit/world.wit
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
default world example-world {
import poll: pkg.poll
package wasi:poll

world example-world {
import poll
}