Skip to content

Commit 833034a

Browse files
committed
fixed path to interfaces
Signed-off-by: jiaxiao zhou <jiazho@microsoft.com>
1 parent 8c0e56f commit 833034a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

design/mvp/WIT.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -230,10 +230,10 @@ The `include` statement also works with [WIT package](#wit-packages-and-use) def
230230

231231
```wit
232232
// b.wit
233-
interface b { ... }
233+
default interface b { ... }
234234
235235
// a.wit
236-
interface a { ... }
236+
default interface a { ... }
237237
238238
world my-world-1 {
239239
import a: self.a
@@ -245,7 +245,7 @@ world my-world-1 {
245245
// union.wit
246246
247247
world union-my-world-1 {
248-
include pkg.my-world-1
248+
include pkg.a.my-world-1
249249
}
250250
251251
world union-my-world-2 {

0 commit comments

Comments
 (0)