Skip to content

Commit 29833de

Browse files
Update posts/2019-10-30-Async-await-stable.md
Co-Authored-By: Mazdak Farrokhzad <[email protected]>
1 parent dd2a0d4 commit 29833de

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

posts/2019-10-30-Async-await-stable.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ async fn another_function() {
101101
This example shows the first difference between Rust and other
102102
languages: we write `future.await` instead of `await future`. This
103103
syntax integrates better with Rust's `?` operator for propagating
104-
errors (which, after all, are very common in I/O). One can simply
104+
errors (which, after all, are very common in I/O). You can simply
105105
write `future.await?` to await the result of a future and propagate
106106
errors. It also has the advantage of making method chaining painless.
107107

0 commit comments

Comments
 (0)