Skip to content

Commit ce98834

Browse files
authored
Merge pull request #531 from sclaire-1/master
Edit tutorial index.md
2 parents c58747b + 8473b73 commit ce98834

File tree

1 file changed

+8
-5
lines changed

1 file changed

+8
-5
lines changed

docs/src/tutorial/index.md

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,14 @@
11
# Tutorial: Writing a chat
22

3-
Nothing is as simple as a chat server, right? Not quite, chat servers
4-
already expose you to all the fun of asynchronous programming: how
5-
do you handle clients connecting concurrently. How do you handle them disconnecting?
3+
Nothing is simpler than creating a chat server, right?
4+
Not quite, chat servers expose you to all the fun of asynchronous programming:
65

7-
How do you distribute the messages?
6+
How will the server handle clients connecting concurrently?
87

9-
In this tutorial, we will show you how to write one in `async-std`.
8+
How will it handle them disconnecting?
9+
10+
How will it distribute the messages?
11+
12+
This tutorial explains how to write a chat server in `async-std`.
1013

1114
You can also find the tutorial in [our repository](https://github.com/async-rs/async-std/blob/master/examples/a-chat).

0 commit comments

Comments
 (0)