diff --git a/docs/guides/http/simple.md b/docs/guides/http/simple.md index be5147541d..53b763d586 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}`); ```