From 3848486f594d93a46040ab2a67adab3a133a8272 Mon Sep 17 00:00:00 2001 From: Natsu Kagami Date: Sat, 7 Apr 2018 00:29:11 +0700 Subject: [PATCH] Update 0000-async_await.md Typo fix. --- text/0000-async_await.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/text/0000-async_await.md b/text/0000-async_await.md index 5e6b11a01f1..a339ae08e64 100644 --- a/text/0000-async_await.md +++ b/text/0000-async_await.md @@ -15,7 +15,7 @@ This has a companion RFC to add a small futures API to libstd and libcore. [motivation]: #motivation High performance network services frequently use asynchronous IO, rather than -blocking IO, becuase it can be easier to get optimal performance when handling +blocking IO, because it can be easier to get optimal performance when handling many concurrent connections. Rust has seen some adoption in the network services space, and we wish to continue to enable those users - and to enable adoption by other users - by making it more ergonomic to write asynchronous