Skip to content

Commit

Permalink
bind v' in s8 rule
Browse files Browse the repository at this point in the history
Signed-off-by: Roman Volosatovs <[email protected]>
  • Loading branch information
rvolosatovs committed May 30, 2024
1 parent 2c77edb commit a56e792
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion design/mvp/Binary.md
Original file line number Diff line number Diff line change
Expand Up @@ -362,7 +362,7 @@ value ::= t:<valtype> len:<uN> v:<val(t)> => (value
val(bool) ::= 0x00 => false
| 0x01 => true
val(u8) ::= v:<core:byte> => v
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))
val(s16) ::= v:<core:s16> => v
val(u16) ::= v:<core:u16> => v
val(s32) ::= v:<core:s32> => v
Expand Down

0 comments on commit a56e792

Please sign in to comment.