Skip to content

Commit 71da17e

Browse files
committed
minor fixes
1 parent f95671c commit 71da17e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

4-binary/03-blob/article.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ blob.arrayBuffer().then(buffer => /* process the ArrayBuffer */);
225225

226226
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.
227227

228-
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 <https://developer.mozilla.org/en-US/docs/Web/API/Streams_API>.
228+
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 <https://developer.mozilla.org/en-US/docs/Web/API/Streams_API>. Streams are convenient for data that is suitable for processing piece-by-piece.
229229

230230
The `Blob` interface's `stream()` method returns a `ReadableStream` which upon reading returns the data contained within the `Blob`.
231231

0 commit comments

Comments
 (0)