From c0959d6dfdb1ceb0faf5e34db967bd1b98dfb8b5 Mon Sep 17 00:00:00 2001 From: renmu123 <1101022351@qq.com> Date: Thu, 18 Feb 2021 15:12:50 +0800 Subject: fix typo change Unit8Array to Uint8Array --- files/zh-cn/web/api/readablestream/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'files/zh-cn') diff --git a/files/zh-cn/web/api/readablestream/index.html b/files/zh-cn/web/api/readablestream/index.html index 445fc134d1..166da23de2 100644 --- a/files/zh-cn/web/api/readablestream/index.html +++ b/files/zh-cn/web/api/readablestream/index.html @@ -64,7 +64,7 @@ translation_of: Web/API/ReadableStream start(controller) { // 下面的函数处理每个数据块 function push() { - // "done"是一个布尔型,"value"是一个Unit8Array + // "done"是一个布尔型,"value"是一个Uint8Array reader.read().then(({ done, value }) => { // 判断是否还有可读的数据? if (done) { -- cgit v1.2.3-54-g00ecf