diff options
Diffstat (limited to 'docs/quickstart.md')
-rw-r--r-- | docs/quickstart.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/quickstart.md b/docs/quickstart.md index 156e1145b..38f51a366 100644 --- a/docs/quickstart.md +++ b/docs/quickstart.md @@ -39,14 +39,14 @@ const server = Bun.serve({ }, }); -console.log(`Listening on http://localhost:${server.port}...`); +console.log(`Listening on http://localhost:${server.port} ...`); ``` Run the file from your shell. ```bash $ bun index.ts -Listening at http://localhost:3000... +Listening at http://localhost:3000 ... ``` Visit [http://localhost:3000](http://localhost:3000) to test the server. You should see a simple page that says "Bun!". |