diff --git a/_includes/cheatsheet-binary.md b/_includes/cheatsheet-binary.md index 35b49c8..9abec85 100644 --- a/_includes/cheatsheet-binary.md +++ b/_includes/cheatsheet-binary.md @@ -31,9 +31,10 @@ class="postcard-grammar binarysyntax">*V*. | | (*n* & 127) | 128 **varint**(*n* >> 7) | if *n* ≥ 128 {:.postcard-grammar.binarysyntax} -**intbytes**(*n*) | = | (the empty sequence) | if *n* = 0 -| | **signedBigEndian**(*n*) | otherwise -**signedBigEndian**(*n*) | = | *n* & 255 | if -128 ≤ *n* ≤ 127 +**intbytes**(*n*) | = | the empty sequence if *n* = 0, otherwise **signedBigEndian**(*n*) + +{:.postcard-grammar.binarysyntax} +**signedBigEndian**(*n*) | = | *n* & 255 | if −128 ≤ *n* ≤ 127 | | **signedBigEndian**(*n* >> 8) *n* & 255 | otherwise The functions **binary32**(*F*) and