From 09cbb51c81f6f118fc1de2a046324856b889c401 Mon Sep 17 00:00:00 2001 From: Danny Kirkham Date: Sun, 8 Sep 2024 08:56:31 +0100 Subject: [PATCH] Fix typo in http.md (#13793) --- docs/api/http.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/api/http.md b/docs/api/http.md index 72f28395d7..45b7c6a7e1 100644 --- a/docs/api/http.md +++ b/docs/api/http.md @@ -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",