Skip to content

Commit

Permalink
Rewording a sentence in TUTORIAL.md
Browse files Browse the repository at this point in the history
  • Loading branch information
echochamber committed Sep 12, 2016
1 parent d3f0b20 commit 4f07e0a
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 4f07e0a

Please sign in to comment.