diff options
author | ayame113 <40050810+ayame113@users.noreply.github.com> | 2023-03-21 16:22:21 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-21 16:22:21 +0900 |
commit | c34e26a9d56596645ee63b19f99c09cf4aea4b37 (patch) | |
tree | 20b2cff2fba830fe80bd126806effde54ff3af38 /cli | |
parent | 896d7f02cb284ad3a05299218dd849685cd33390 (diff) |
docs: fix broken `Deno.FsFile#readable` example code (#18277)
Diffstat (limited to 'cli')
-rw-r--r-- | cli/tsc/dts/lib.deno.ns.d.ts | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/cli/tsc/dts/lib.deno.ns.d.ts b/cli/tsc/dts/lib.deno.ns.d.ts index 7431d3c05..571a9dcd2 100644 --- a/cli/tsc/dts/lib.deno.ns.d.ts +++ b/cli/tsc/dts/lib.deno.ns.d.ts @@ -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>; |