diff options
author | 2023-09-02 08:49:50 +0200 | |
---|---|---|
committer | 2023-09-01 23:49:50 -0700 | |
commit | db2faf7c5b665f1f93cc3d1f159e5932c310b992 (patch) | |
tree | a591be5aff06ab4aac6edcc1afa5842aaf8e7b10 /docs | |
parent | bd690bb2b55da3ec7c919be48d5af58005e89a9d (diff) | |
download | bun-db2faf7c5b665f1f93cc3d1f159e5932c310b992.tar.gz bun-db2faf7c5b665f1f93cc3d1f159e5932c310b992.tar.zst bun-db2faf7c5b665f1f93cc3d1f159e5932c310b992.zip |
docs: fix http simple example log statement (#4320)
Co-authored-by: Karl Böhlmark <karl.bohlmark@netinsight.net>
Diffstat (limited to 'docs')
-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}`); ``` |