From cccfbd7c306f84aa2a4a9cad12201013d32be02a Mon Sep 17 00:00:00 2001 From: HirenTariwala <41938818+HirenTariwala@users.noreply.github.com> Date: Tue, 10 Sep 2019 17:03:22 +0530 Subject: [PATCH] Update h to H char according ASCII value I have found that ASCII is not matching with char h so I have a changed. h = 104 H = 72 --- 4-binary/03-blob/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/4-binary/03-blob/article.md b/4-binary/03-blob/article.md index b71f6341..ce32b29b 100644 --- a/4-binary/03-blob/article.md +++ b/4-binary/03-blob/article.md @@ -29,7 +29,7 @@ let blob = new Blob(["…"], {type: 'text/html'}); ```js // create Blob from a typed array and strings -let hello = new Uint8Array([72, 101, 108, 108, 111]); // "hello" in binary form +let hello = new Uint8Array([72, 101, 108, 108, 111]); // "Hello" in binary form let blob = new Blob([hello, ' ', 'world'], {type: 'text/plain'}); ```