You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/app/docs/concepts/endpoint/page.mdx
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -16,7 +16,7 @@ async fn main() {
16
16
}
17
17
```
18
18
19
-
Breaking that down the `builder` sets up configuration for the endpoint, and `bind` creates the endpoint and starts listening for incoming connections. The`await` keyword is used to wait for the endpoint to be created in an asynchronous context.
19
+
Breaking that down, `bind` creates the endpoint and starts listening for incoming connections, while the`await` keyword is used to wait for the endpoint to be created in an asynchronous context.
20
20
21
21
Once you have an endpoint, you can use it to create connections to other endpoints, or accept incoming connections from other endpoints.
0 commit comments