From f96f696b310b0c29702f5aa3e084992518d59e7c Mon Sep 17 00:00:00 2001 From: Mark Date: Tue, 11 Feb 2025 18:41:19 -0800 Subject: [PATCH] Typo --- src/Advanced/Fast Inverse Root/parts/00 int.typ | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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()