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
This commit is contained in:
HirenTariwala 2019-09-10 17:03:22 +05:30 committed by GitHub
parent 3dd8ca09c1
commit cccfbd7c30
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -29,7 +29,7 @@ let blob = new Blob(["<html>…</html>"], {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'});
```