Fix typo in http.md (#13793)

This commit is contained in:
Danny Kirkham
2024-09-08 08:56:31 +01:00
committed by GitHub
parent 50d2f76075
commit 09cbb51c81

View File

@@ -87,7 +87,7 @@ Bun.serve({
// serve static text
"/": new Response("Hello World"),
// server a file by buffering it in memory
// serve a file by buffering it in memory
"/index.html": new Response(await Bun.file("./index.html").bytes(), {
headers: {
"Content-Type": "text/html",