From 09f118c97705e28e89774d5aabbb2642c5430056 Mon Sep 17 00:00:00 2001 From: wangchengfeng Date: Thu, 23 Mar 2023 18:39:18 +0800 Subject: [PATCH] fix: blob spell --- 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 537dc6acd3..89dfb771ea 100644 --- a/4-binary/03-blob/article.md +++ b/4-binary/03-blob/article.md @@ -214,7 +214,7 @@ let blob = await new Promise(resolve => canvasElem.toBlob(resolve, 'image/png')) 但是,如果我们需要执行低级别的处理时,我们可以从 `blob.arrayBuffer()` 中获取最低级别的 `ArrayBuffer`: ```js -// 从 bolb 获取 arrayBuffer +// 从 blob 获取 arrayBuffer const bufferPromise = await blob.arrayBuffer(); // 或