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:
273273``` wit
274274flags-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
303303variant-items ::= 'variant' id '{' variant-cases '}'
304304
305- variant-cases ::= variant-case,
305+ variant-cases ::= variant-case
306306 | variant-case ',' variant-cases?
307307
308308variant-case ::= id
@@ -341,7 +341,7 @@ Specifically the structure of this is:
341341``` wit
342342enum-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
373373union-items ::= 'union' id '{' union-cases '}'
374374
375- union-cases ::= ty,
375+ union-cases ::= ty
376376 | ty ',' union-cases?
377377```
378378
You can’t perform that action at this time.
0 commit comments