Skip to content

Commit 2e8c579

Browse files
Fix typo: at a time instead of at time
1 parent 8fea050 commit 2e8c579

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/src/tutorial/receiving_messages.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ handle.await?
118118
The `.await` waits until the client finishes, and `?` propagates the result.
119119

120120
There are two problems with this solution however!
121-
*First*, because we immediately await the client, we can only handle one client at time, and that completely defeats the purpose of async!
121+
*First*, because we immediately await the client, we can only handle one client at a time, and that completely defeats the purpose of async!
122122
*Second*, if a client encounters an IO error, the whole server immediately exits.
123123
That is, a flaky internet connection of one peer brings down the whole chat room!
124124

0 commit comments

Comments
 (0)