Skip to content

Commit

Permalink
Merge pull request rust-lang#276 from martinschleiss/master
Browse files Browse the repository at this point in the history
Fix links in README.md
  • Loading branch information
alexcrichton committed Dec 6, 2016
2 parents b6f2f12 + aa35f40 commit 1fdb5f4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ First, add this to your `Cargo.toml`:

```toml
[dependencies]
futures = "0.1.2"
futures = "0.1.6"
```

Next, add this to your crate:
Expand Down Expand Up @@ -85,13 +85,13 @@ there are a wide variety of helpful combinators associated with this trait which
are also zero-allocation and serve as a succinct and powerful way to compose
computations on futures.

[Future]: https://docs.rs/futures/0.1/futures/trait.Future.html
[Future]: https://docs.rs/futures/^0.1/futures/future/trait.Future.html

The `Future` trait is driven by one method, [`poll`][poll], which allows
pulling values out of a future and also getting notified when a future is
complete. More documentation can be found on the associated method.

[poll]: https://docs.rs/futures/0.1/futures/trait.Future.html#tymethod.pollod.poll
[poll]: https://docs.rs/futures/^0.1/futures/future/trait.Future.html#tymethod.pollod.poll

More information can be found in [the tutorial][tutorial-future-trait]

Expand Down

0 comments on commit 1fdb5f4

Please sign in to comment.