Typo
All checks were successful
CI / Typos (pull_request) Successful in 11s
CI / Typst formatting (pull_request) Successful in 6s
CI / Build (pull_request) Successful in 9m0s

This commit is contained in:
Mark 2025-02-11 18:41:19 -08:00
parent 907da44382
commit f96f696b31

View File

@ -8,7 +8,7 @@ In this handout, we'll denote bit strings with the prefix `0b`. \
That is, $1010 =$ "one thousand and one," while $#text([`0b1001`]) = 2^3 + 2^0 = 9$
#v(2mm)
We will seperate long bit strings with underscores for readability. \
We will separate long bit strings with underscores for readability. \
Underscores have no meaning: $#text([`0b1111_0000`]) = #text([`0b11110000`])$.
#problem()