diff options
-rw-r--r-- | docs/guides/http/simple.md | 2 |
1 files changed, 1 insertions, 1 deletions
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}`); ``` |