docs: fix http simple example log statement (#4320)

Co-authored-by: Karl Böhlmark <karl.bohlmark@netinsight.net>
This commit is contained in:
Karl Böhlmark
2023-09-02 08:49:50 +02:00
committed by GitHub
parent bd690bb2b5
commit db2faf7c5b

View File

@@ -14,5 +14,5 @@ const server = Bun.serve({
},
});
console.log(`Listening on localhost:\${server.port}`);
console.log(`Listening on localhost: ${server.port}`);
```