Skip to content

Commit 957e51e

Browse files
committed
Fix WIT example code
1 parent 996bed8 commit 957e51e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

design/mvp/Async.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -625,8 +625,8 @@ Given these imported WIT functions (using the fixed-length-list feature 🔧):
625625
world w {
626626
import foo: func(s: string) -> u32;
627627
import bar: func(s: string) -> string;
628-
import baz: func(t: tuple<u64; 5>) -> string;
629-
import quux: func(t: tuple<u32; 17>) -> string;
628+
import baz: func(t: list<u64; 5>) -> string;
629+
import quux: func(t: list<u32; 17>) -> string;
630630
}
631631
```
632632
the default/synchronous lowered import function signatures are:

0 commit comments

Comments
 (0)