diff options
author | 2023-07-26 17:11:05 -0700 | |
---|---|---|
committer | 2023-07-26 17:11:15 -0700 | |
commit | 34fd4df6460dfb46b20445c15e4eaa7561deba99 (patch) | |
tree | e91fbd87f669da2719e8cc980f5b5931a582b382 /docs/guides/http/stream-file.md | |
parent | a6d54e59491a8db94467e482e063c06ee4c27be2 (diff) | |
download | bun-34fd4df6460dfb46b20445c15e4eaa7561deba99.tar.gz bun-34fd4df6460dfb46b20445c15e4eaa7561deba99.tar.zst bun-34fd4df6460dfb46b20445c15e4eaa7561deba99.zip |
Fix broken anchors
Diffstat (limited to 'docs/guides/http/stream-file.md')
-rw-r--r-- | docs/guides/http/stream-file.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/guides/http/stream-file.md b/docs/guides/http/stream-file.md index 66c8c247b..ab16acf42 100644 --- a/docs/guides/http/stream-file.md +++ b/docs/guides/http/stream-file.md @@ -30,7 +30,7 @@ new Response(Bun.file("./img.png")).headers.get("Content-Type"); --- -Putting it all together with [`Bun.serve()`](/docs/api/http#serving-files-bun-serve). +Putting it all together with [`Bun.serve()`](/docs/api/http#bun-serve). ```ts // static file server |