Skip to content

Commit a79bad2

Browse files
authored
Merge pull request #2821 from Nemo157/patch-2
Fix more broken blog post links in 2592-futures
2 parents 2a78691 + a31e594 commit a79bad2

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

text/2592-futures.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -51,14 +51,14 @@ remaining questions about `async` syntax before it, too, is stabilized.
5151

5252
The APIs proposed for stabilization have a lengthy history:
5353

54-
- The `Future` trait began with the futures crate; [0.1 was released](http://aturon.github.io/2016/08/11/futures/)
54+
- The `Future` trait began with the futures crate; [0.1 was released](https://aturon.github.io/tech/2016/08/11/futures/)
5555
in August of 2016. That release established the core ideas of the task/polling model,
5656
as well as many other aspects of the API that are retained here. The 0.1 series
5757
continues to be heavily used throughout the Rust ecosystem and in production systems.
5858

5959
- In early 2018, as work began toward `async`/`await`, the futures team set up
6060
an RFC process and wrote [several RFCs](https://github.com/rust-lang-nursery/futures-rfcs/pulls?q=is%3Apr+is%3Aclosed) to make revisions to the core APIs based
61-
on longstanding community feedback. These RFCs ultimately resulted in a [0.2le release](http://aturon.github.io/2018/02/27/futures-0-2-RC/), which [shipped](http://aturon.github.io/2018/04/06/futures2/) in April.
61+
on longstanding community feedback. These RFCs ultimately resulted in a [0.2le release](https://aturon.github.io/tech/2018/02/27/futures-0-2-RC/), which [shipped](https://aturon.github.io/tech/2018/04/06/futures2/) in April.
6262

6363
- During the same period, @withoutboats's work on the pinning APIs supporting borrowing
6464
within `async` blocks [came to completion](https://boats.gitlab.io/blog/post/2018-04-06-async-await-final/).
@@ -438,14 +438,14 @@ So far we've been able to push the task/polling model into virtually every niche
438438
Rust wishes to occupy, and the main downside has been, in essence, the lack of
439439
async/await syntax (and
440440
the
441-
[borrowing it supports](http://aturon.github.io/2018/04/24/async-borrowing/)).
441+
[borrowing it supports](https://aturon.github.io/tech/2018/04/24/async-borrowing/)).
442442

443443
This RFC does not attempt to provide a complete introduction to the task model
444444
that originated with the futures crate. A fuller account of the design rationale
445445
and alternatives can be found in the following two blog posts:
446446

447-
- [Zero-cost futures in Rust](http://aturon.github.io/2016/08/11/futures/)
448-
- [Designing futures for Rust](http://aturon.github.io/2016/09/07/futures-design/)
447+
- [Zero-cost futures in Rust](https://aturon.github.io/tech/2016/08/11/futures/)
448+
- [Designing futures for Rust](https://aturon.github.io/tech/2016/09/07/futures-design/)
449449

450450
To summarize, the main alternative model for futures is a callback-based approach,
451451
which was attempted for several months before the current approach was discovered.

0 commit comments

Comments
 (0)