diff options
-rw-r--r-- | files/zh-cn/web/api/readablestream/index.html | 2 |
1 files changed, 1 insertions, 1 deletions
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) { |