From a41b87205d9547fb1abeb8b9388012a7bc7149b7 Mon Sep 17 00:00:00 2001 From: Daniel Carosone Date: Sat, 17 Aug 2019 11:50:59 +1000 Subject: [PATCH] distributed massages are the best --- docs/src/tutorial/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/tutorial/index.md b/docs/src/tutorial/index.md index 7509dd2..20188b8 100644 --- a/docs/src/tutorial/index.md +++ b/docs/src/tutorial/index.md @@ -3,7 +3,7 @@ Nothing is as simple as a chat server, right? Not quite, chat servers already expose you to all the fun of asynchronous programming: how do you handle client connecting concurrently. How do handle them disconnecting? -How do your distribute the massages? +How do your distribute the messages? In this tutorial, we will show you how to write one in `async-std`.