Skip to content

Commit

Permalink
Merge pull request rust-lang#144 from echochamber/reword-a-sentence-i…
Browse files Browse the repository at this point in the history
…n-tutorial

Rewording a sentence in TUTORIAL.md
  • Loading branch information
alexcrichton authored Sep 12, 2016
2 parents 45ba4ed + 4f07e0a commit 200e757
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion TUTORIAL.md
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ let (_, data) = core.run(response).unwrap();
println!("{}", String::from_utf8_lossy(&data));
```

Here we pass our `response` future, our entire HTTP request, and we pass it to
Here we pass our `response` future, our entire HTTP request, to
the event loop, [asking it to resolve the future][`core_run`]. The event loop will
then run until the future has been resolved, returning the result of the future
which in this case is `io::Result<(TcpStream, Vec<u8>)>`.
Expand Down

0 comments on commit 200e757

Please sign in to comment.