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 db62dc8 commit ecc7093Copy full SHA for ecc7093
design/mvp/Binary.md
@@ -359,7 +359,7 @@ value ::= t:<valtype> len:<uN> v:<val(t)> => (value
359
val(bool) ::= 0x00 => false
360
| 0x01 => true
361
val(u8) ::= v:<core:byte> => v
362
-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))
363
val(s16) ::= v:<core:s16> => v
364
val(u16) ::= v:<core:u16> => v
365
val(s32) ::= v:<core:s32> => v
0 commit comments