diff --git a/docs/src/concepts/futures.md b/docs/src/concepts/futures.md index 32f6aa89..cee7ac23 100644 --- a/docs/src/concepts/futures.md +++ b/docs/src/concepts/futures.md @@ -102,7 +102,7 @@ While the `Future` trait has existed in Rust for a while, it was inconvenient to Amazingly little difference, right? All we did is label the function `async` and insert 2 special commands: `.await`. -This function sets up a deferred computation. When this function is called, it will produce a `Future>` instead of immediately returning the `Result`. (Or, more precisely, generate a type for you that implements `Future>`.) +This function sets up a deferred computation. When this function is called, it will produce a `Future>` instead of immediately returning a `Result`. (Or, more precisely, generate a type for you that implements `Future>`.) ## What does `.await` do?