From f95671cd28012af88da33858690322bc350187f2 Mon Sep 17 00:00:00 2001 From: Ilya Kantor Date: Sun, 6 Feb 2022 13:18:25 +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 4fe5af6d..010219c7 100644 --- a/4-binary/03-blob/article.md +++ b/4-binary/03-blob/article.md @@ -241,7 +241,7 @@ while (true) { let { done, data } = await stream.read(); if (done) { // no more data in the stream - console.log('write done.'); + console.log('all blob processed.'); break; }