diff --git a/docs/guides/http/simple.md b/docs/guides/http/simple.md index 53b763d586..3d0e294924 100644 --- a/docs/guides/http/simple.md +++ b/docs/guides/http/simple.md @@ -14,5 +14,6 @@ const server = Bun.serve({ }, }); -console.log(`Listening on localhost: ${server.port}`); +console.log(`Listening on ${server.url}`); + ```