File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -273,7 +273,7 @@ Specifically the structure of this is:
273
273
``` wit
274
274
flags-items ::= 'flags' id '{' flags-fields '}'
275
275
276
- flags-fields ::= id,
276
+ flags-fields ::= id
277
277
| id ',' flags-fields?
278
278
```
279
279
@@ -302,7 +302,7 @@ Specifically the structure of this is:
302
302
``` wit
303
303
variant-items ::= 'variant' id '{' variant-cases '}'
304
304
305
- variant-cases ::= variant-case,
305
+ variant-cases ::= variant-case
306
306
| variant-case ',' variant-cases?
307
307
308
308
variant-case ::= id
@@ -341,7 +341,7 @@ Specifically the structure of this is:
341
341
``` wit
342
342
enum-items ::= 'enum' id '{' enum-cases '}'
343
343
344
- enum-cases ::= id,
344
+ enum-cases ::= id
345
345
| id ',' enum-cases?
346
346
```
347
347
@@ -372,7 +372,7 @@ Specifically the structure of this is:
372
372
``` wit
373
373
union-items ::= 'union' id '{' union-cases '}'
374
374
375
- union-cases ::= ty,
375
+ union-cases ::= ty
376
376
| ty ',' union-cases?
377
377
```
378
378
You can’t perform that action at this time.
0 commit comments