Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[docs] added awaits in Bun.connect calls #9574

Merged
merged 1 commit into from Mar 23, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 3 additions & 3 deletions docs/api/tcp.md
Expand Up @@ -115,7 +115,7 @@ Use `Bun.connect` to connect to a TCP server. Specify the server to connect to w

```ts
// The client
const socket = Bun.connect({
const socket = await Bun.connect({
hostname: "localhost",
port: 8080,

Expand All @@ -138,7 +138,7 @@ To require TLS, specify `tls: true`.

```ts
// The client
const socket = Bun.connect({
const socket = await Bun.connect({
// ... config
tls: true,
});
Expand All @@ -164,7 +164,7 @@ server.reload({
```

```ts#Client
const socket = Bun.connect({ /* config */ })
const socket = await Bun.connect({ /* config */ })
socket.reload({
data(){
// new 'data' handler
Expand Down