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.
v'
s8
1 parent 2c77edb commit a56e792Copy full SHA for a56e792
design/mvp/Binary.md
@@ -362,7 +362,7 @@ value ::= t:<valtype> len:<uN> v:<val(t)> => (value
362
val(bool) ::= 0x00 => false
363
| 0x01 => true
364
val(u8) ::= v:<core:byte> => v
365
-val(s8) ::= v:<core:byte> => v if v < 128 else (v - 256)
+val(s8) ::= v:<core:byte> => v' (where v' = v if v < 128 else (v - 256))
366
val(s16) ::= v:<core:s16> => v
367
val(u16) ::= v:<core:u16> => v
368
val(s32) ::= v:<core:s32> => v
0 commit comments