We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c3ef2a9 commit 34dfef3Copy full SHA for 34dfef3
design/mvp/Binary.md
@@ -182,11 +182,11 @@ primvaltype ::= 0x7f => bool
182
| 0x73 => string
183
defvaltype ::= pvt:<primvaltype> => pvt
184
| 0x72 lt*:vec(<labelvaltype>) => (record (field lt)*) (if |lt*| > 0)
185
- | 0x71 case*:vec(<case>) => (variant case*)
+ | 0x71 case*:vec(<case>) => (variant case+) (if |case*| > 0)
186
| 0x70 t:<valtype> => (list t)
187
| 0x6f t*:vec(<valtype>) => (tuple t+) (if |t*| > 0)
188
| 0x6e l*:vec(<label'>) => (flags l+) (if |l*| > 0)
189
- | 0x6d l*:vec(<label'>) => (enum l*)
+ | 0x6d l*:vec(<label'>) => (enum l+) (if |l*| > 0)
190
| 0x6b t:<valtype> => (option t)
191
| 0x6a t?:<valtype>? u?:<valtype>? => (result t? (error u)?)
192
| 0x69 i:<typeidx> => (own i)
0 commit comments