docs: fix broken Deno.FsFile#readable example code (#18277)

This commit is contained in:
ayame113 2023-03-21 16:22:21 +09:00 committed by GitHub
parent 896d7f02cb
commit c34e26a9d5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2017,7 +2017,6 @@ declare namespace Deno {
* for await (const chunk of file.readable) {
* console.log(decoder.decode(chunk));
* }
* file.close();
* ```
*/
readonly readable: ReadableStream<Uint8Array>;