diff options
author | 2023-09-12 21:53:55 -0400 | |
---|---|---|
committer | 2023-09-12 18:53:55 -0700 | |
commit | 5f9c30b717e69982f426cf7586346e613afd1c01 (patch) | |
tree | 95311974800358d03d837066d019d809ed74b739 /docs/guides/websocket | |
parent | c55574b4d3679257b3abd0137a06026bbf99ff80 (diff) | |
download | bun-5f9c30b717e69982f426cf7586346e613afd1c01.tar.gz bun-5f9c30b717e69982f426cf7586346e613afd1c01.tar.zst bun-5f9c30b717e69982f426cf7586346e613afd1c01.zip |
Update simple.md (#4997)
Remove errant slash preventing the correct console log
Diffstat (limited to 'docs/guides/websocket')
-rw-r--r-- | docs/guides/websocket/simple.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/guides/websocket/simple.md b/docs/guides/websocket/simple.md index 5aabf2fdf..a84a3c8ee 100644 --- a/docs/guides/websocket/simple.md +++ b/docs/guides/websocket/simple.md @@ -29,5 +29,5 @@ const server = Bun.serve<{ authToken: string }>({ }, }); -console.log(`Listening on localhost:\${server.port}`); +console.log(`Listening on localhost:${server.port}`); ``` |