aboutsummaryrefslogtreecommitdiff
path: root/docs/guides/websocket
diff options
context:
space:
mode:
authorGravatar Tom Redman <tom@tomredman.ca> 2023-09-12 21:53:55 -0400
committerGravatar GitHub <noreply@github.com> 2023-09-12 18:53:55 -0700
commit5f9c30b717e69982f426cf7586346e613afd1c01 (patch)
tree95311974800358d03d837066d019d809ed74b739 /docs/guides/websocket
parentc55574b4d3679257b3abd0137a06026bbf99ff80 (diff)
downloadbun-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.md2
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}`);
```