diff --git a/course-definition.yml b/course-definition.yml index 52565a5..8e18343 100644 --- a/course-definition.yml +++ b/course-definition.yml @@ -134,17 +134,17 @@ stages: The first two bits of a size-encoded value indicate how the value should be parsed. Here's a guide (bits are shown in both hexadecimal and binary): ``` - If the first two bits are 0b00: - The size is the remaining 6 bits of the byte. - In this example, the size is 10: + /* If the first two bits are 0b00: + The size is the remaining 6 bits of the byte. + In this example, the size is 10: */ 0A 00001010 - If the first two bits are 0b01: - The size is the next 14 bits - (remaining 6 bits in the first byte, combined with the next byte), - in big-endian (read left-to-right). - In this example, the size is 700: + /* If the first two bits are 0b01: + The size is the next 14 bits + (remaining 6 bits in the first byte, combined with the next byte), + in big-endian (read left-to-right). + In this example, the size is 700: */ 42 BC 01000010 10111100