Chapter 1: Fix typo in comment

This commit is contained in:
Arne Janbu 2019-11-08 23:05:34 +01:00 committed by Taylor Cramer
parent 799fded3c8
commit fa3228386e
1 changed files with 1 additions and 1 deletions

View File

@ -31,7 +31,7 @@ async fn download_async(_url: &str) {
// ANCHOR: get_two_sites_async
async fn get_two_sites_async() {
// Create a two different "futures" which, when run to completion,
// Create two different "futures" which, when run to completion,
// will asynchronously download the webpages.
let future_one = download_async("https://www.foo.com");
let future_two = download_async("https://www.bar.com");