Skip to content

Commit 7005516

Browse files
authored
Update WIT.md
see issue #132
1 parent b458b00 commit 7005516

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

design/mvp/WIT.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -273,7 +273,7 @@ Specifically the structure of this is:
273273
```wit
274274
flags-items ::= 'flags' id '{' flags-fields '}'
275275
276-
flags-fields ::= id,
276+
flags-fields ::= id
277277
| id ',' flags-fields?
278278
```
279279

@@ -302,7 +302,7 @@ Specifically the structure of this is:
302302
```wit
303303
variant-items ::= 'variant' id '{' variant-cases '}'
304304
305-
variant-cases ::= variant-case,
305+
variant-cases ::= variant-case
306306
| variant-case ',' variant-cases?
307307
308308
variant-case ::= id
@@ -341,7 +341,7 @@ Specifically the structure of this is:
341341
```wit
342342
enum-items ::= 'enum' id '{' enum-cases '}'
343343
344-
enum-cases ::= id,
344+
enum-cases ::= id
345345
| id ',' enum-cases?
346346
```
347347

@@ -372,7 +372,7 @@ Specifically the structure of this is:
372372
```wit
373373
union-items ::= 'union' id '{' union-cases '}'
374374
375-
union-cases ::= ty,
375+
union-cases ::= ty
376376
| ty ',' union-cases?
377377
```
378378

0 commit comments

Comments
 (0)