From 71da17e5960f1c76aad0d04d21f10bc65318d3f6 Mon Sep 17 00:00:00 2001 From: Ilya Kantor Date: Sun, 6 Feb 2022 13:19:41 +0300 Subject: [PATCH] minor fixes --- 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 010219c7..52bb3d6b 100644 --- a/4-binary/03-blob/article.md +++ b/4-binary/03-blob/article.md @@ -225,7 +225,7 @@ blob.arrayBuffer().then(buffer => /* process the ArrayBuffer */); When we read and write to a blob of more than `2G`, the use of `arrayBuffer` becomes more memory intensive for us. At this point, we can directly convert the blob to a stream. -A stream is a special object that allows to read from it (or write into it) portion by portion. It's outside of our scope here, but here's an example, and you can read more at . +A stream is a special object that allows to read from it (or write into it) portion by portion. It's outside of our scope here, but here's an example, and you can read more at . Streams are convenient for data that is suitable for processing piece-by-piece. The `Blob` interface's `stream()` method returns a `ReadableStream` which upon reading returns the data contained within the `Blob`.