Merge pull request #140 from SirVer/patch-1

Fix typo.
This commit is contained in:
Alex Crichton 2017-01-04 08:43:00 -08:00 committed by GitHub
commit ff7fcd1074

View File

@ -102,7 +102,7 @@ fn main() {
// And this is where much of the magic of this server happens. We
// crucially want all clients to make progress concurrently, rather than
// blocking one on completion of another. To achieve this was use the
// blocking one on completion of another. To achieve this we use the
// `spawn` function on `Handle` to essentially execute some work in the
// background.
//