From 9718d84565cff0f3a779878a4d502c50e3ef42a2 Mon Sep 17 00:00:00 2001 From: jetstream0 <49297268+jetstream0@users.noreply.github.com> Date: Mon, 30 Oct 2023 06:39:53 +0000 Subject: [PATCH] fix typo --- posts/hex_to_bytes_and_back.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/posts/hex_to_bytes_and_back.md b/posts/hex_to_bytes_and_back.md index aab9982..1687446 100644 --- a/posts/hex_to_bytes_and_back.md +++ b/posts/hex_to_bytes_and_back.md @@ -51,7 +51,7 @@ Here, we determine how many whole bytes^\[4\]^ are in the hex string, by diving By the way, doing, for example, `new Uint8Array(5)`, will initialize an `Uint8Array` of all 0s, of length 5. -This function, as written, isn't designed to take in invalid input, so make sure to valid any inputs. In fact, I would encourage you to go and write your own conversion functions, instead of copy pasting these examples. You'll (hopefully) understand the concepts much faster that way. +This function, as written, isn't designed to take in invalid input, so make sure to validate any inputs. In fact, I would encourage you to go and write your own conversion functions, instead of copy pasting these examples. You'll (hopefully) understand the concepts much faster that way. === - \[0\]: ±50 thousand lines (estimating skills are not my strong suit).