From ee85bbc0a365bcf0074abb7a2bb7ff4c859d1db7 Mon Sep 17 00:00:00 2001 From: Moris Kramer Date: Fri, 5 Jan 2024 02:59:01 +0200 Subject: [PATCH] Update simple.md (#7987) * Update simple.md * Update docs/guides/http/simple.md --------- Co-authored-by: Jarred Sumner --- docs/guides/http/simple.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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}`); + ```