Skip to content

Commit

Permalink
I'm worried wasi is running low on semicolons
Browse files Browse the repository at this point in the history
  • Loading branch information
alexcrichton committed Oct 7, 2023
1 parent 4282ada commit 6dc2d2e
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions crates/wasi-http/wit/test.wit
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// only used as part of `test-programs`
world test-reactor {
include wasi:cli/reactor
include wasi:cli/reactor;

export add-strings: func(s: list<string>) -> u32;
export get-strings: func() -> list<string>;
Expand All @@ -14,7 +14,7 @@ world test-reactor {
}

world test-command {
include wasi:cli/reactor
import wasi:http/types
import wasi:http/outgoing-handler
include wasi:cli/reactor;
import wasi:http/types;
import wasi:http/outgoing-handler;
}
8 changes: 4 additions & 4 deletions crates/wasi/wit/test.wit
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// only used as part of `test-programs`
world test-reactor {
include wasi:cli/reactor
include wasi:cli/reactor;

export add-strings: func(s: list<string>) -> u32;
export get-strings: func() -> list<string>;
Expand All @@ -14,7 +14,7 @@ world test-reactor {
}

world test-command {
include wasi:cli/reactor
import wasi:http/types
import wasi:http/outgoing-handler
include wasi:cli/reactor;
import wasi:http/types;
import wasi:http/outgoing-handler;
}

0 comments on commit 6dc2d2e

Please sign in to comment.