aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorGravatar Karl Böhlmark <karl.bohlmark@gmail.com> 2023-09-02 08:49:50 +0200
committerGravatar GitHub <noreply@github.com> 2023-09-01 23:49:50 -0700
commitdb2faf7c5b665f1f93cc3d1f159e5932c310b992 (patch)
treea591be5aff06ab4aac6edcc1afa5842aaf8e7b10 /docs
parentbd690bb2b55da3ec7c919be48d5af58005e89a9d (diff)
downloadbun-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.md2
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}`);
```