From ce9cbc5501e1f11b36bbc34b8e73ccdb841c3d1f Mon Sep 17 00:00:00 2001 From: Yoshiya Hinosawa Date: Mon, 2 Dec 2024 16:15:30 +0900 Subject: [PATCH] fmt --- deploy/api/runtime-fs.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/deploy/api/runtime-fs.md b/deploy/api/runtime-fs.md index 40ff1a358..2b63bfc15 100644 --- a/deploy/api/runtime-fs.md +++ b/deploy/api/runtime-fs.md @@ -241,9 +241,9 @@ the file descriptor: `const iterator = fd.readable[Symbol.asyncIterator]();` ## Deno.File -`Deno.File` is a file handle returned from [`Deno.open()`](#deno.open). It can be -used to read chunks of the file using the `read()` method. The file handle can -be closed using the `close()` method. +`Deno.File` is a file handle returned from [`Deno.open()`](#deno.open). It can +be used to read chunks of the file using the `read()` method. The file handle +can be closed using the `close()` method. The interface is similar to [Deno](https://docs.deno.com/api/deno/~/Deno.File), but it doesn't support writing to the file, or seeking. Support for the latter