aboutsummaryrefslogtreecommitdiff
path: root/docs/api/file-io.md
diff options
context:
space:
mode:
Diffstat (limited to 'docs/api/file-io.md')
-rw-r--r--docs/api/file-io.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/api/file-io.md b/docs/api/file-io.md
index 4c432300e..35d639422 100644
--- a/docs/api/file-io.md
+++ b/docs/api/file-io.md
@@ -233,7 +233,7 @@ interface Bun {
file(path: string | number | URL, options?: { type?: string }): BunFile;
write(
- destination: string | number | FileBlob | URL,
+ destination: string | number | BunFile | URL,
input: string | Blob | ArrayBuffer | SharedArrayBuffer | TypedArray | Response,
): Promise<number>;
}