diff --git a/src/Advanced/Fast Inverse Root/parts/00 int.typ b/src/Advanced/Fast Inverse Root/parts/00 int.typ index 6101049..9de9189 100644 --- a/src/Advanced/Fast Inverse Root/parts/00 int.typ +++ b/src/Advanced/Fast Inverse Root/parts/00 int.typ @@ -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()