diff options
-rw-r--r-- | docs/api/file-io.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/api/file-io.md b/docs/api/file-io.md index e141c8b17..e6902cc6a 100644 --- a/docs/api/file-io.md +++ b/docs/api/file-io.md @@ -195,7 +195,7 @@ const input = Bun.file("input.txt"); await Bun.write(Bun.stdout, input); ``` -To write an HTTP response to disk: +To write the body of an HTTP response to disk: ```ts const response = await fetch("https://bun.sh"); |