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'}); ```