From db2faf7c5b665f1f93cc3d1f159e5932c310b992 Mon Sep 17 00:00:00 2001 From: Karl Böhlmark Date: Sat, 2 Sep 2023 08:49:50 +0200 Subject: docs: fix http simple example log statement (#4320) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Karl Böhlmark --- docs/guides/http/simple.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'docs/guides') diff --git a/docs/guides/http/simple.md b/docs/guides/http/simple.md index be5147541..53b763d58 100644 --- a/docs/guides/http/simple.md +++ b/docs/guides/http/simple.md @@ -14,5 +14,5 @@ const server = Bun.serve({ }, }); -console.log(`Listening on localhost:\${server.port}`); +console.log(`Listening on localhost: ${server.port}`); ``` -- cgit v1.2.3