Skip to content

Commit ecc7093

Browse files
rvolosatovslukewagner
authored andcommitted
bind v' in s8 rule
Signed-off-by: Roman Volosatovs <rvolosatovs@riseup.net>
1 parent db62dc8 commit ecc7093

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

design/mvp/Binary.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -359,7 +359,7 @@ value ::= t:<valtype> len:<uN> v:<val(t)> => (value
359359
val(bool) ::= 0x00 => false
360360
| 0x01 => true
361361
val(u8) ::= v:<core:byte> => v
362-
val(s8) ::= v:<core:byte> => v if v < 128 else (v - 256)
362+
val(s8) ::= v:<core:byte> => v' (where v' = v if v < 128 else (v - 256))
363363
val(s16) ::= v:<core:s16> => v
364364
val(u16) ::= v:<core:u16> => v
365365
val(s32) ::= v:<core:s32> => v

0 commit comments

Comments
 (0)