diff --git a/src/part-guide/adv-async-await.md b/src/part-guide/adv-async-await.md index e73c3b39..b3516534 100644 --- a/src/part-guide/adv-async-await.md +++ b/src/part-guide/adv-async-await.md @@ -70,7 +70,7 @@ let s2 = async { }; ``` -If we were to execute this snippet, `s1` would be a string which could be printed, but `s2` would be a future - `question()` would not have been called. To print `s2`, we first have to `s2.await`. +If we were to execute this snippet, `s1` would be a string which could be printed, but `s2` would be a future; `question()` would not have been called. To print `s2`, we first have to `s2.await`. An async block is the simplest way to create a future, and the simplest way to create an async context for deferred work.