Skip to content

Commit a6f67c3

Browse files
authored
Merge pull request #3188 from couchand/2021-10/broken-links
Fix broken links in RFC 2996
2 parents 22fd68d + dcba493 commit a6f67c3

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

text/2996-async-stream.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ This includes a trait for producing streams and a trait for consuming streams.
4646

4747
A "stream" is the async version of an [iterator].
4848

49-
The `Iterator` trait includes a `next` method, which computes and returns the next item in the sequence. The `Stream` trait includes the `poll_next` method to assist with defining a stream. In the future, we should add a `next` method for use when consuming and interacting with a stream (see the [Future possiblilities](future-possibilities) section later in this RFC).
49+
The `Iterator` trait includes a `next` method, which computes and returns the next item in the sequence. The `Stream` trait includes the `poll_next` method to assist with defining a stream. In the future, we should add a `next` method for use when consuming and interacting with a stream (see the [Future possiblilities][future-possibilities] section later in this RFC).
5050

5151
## poll_next method
5252

@@ -216,7 +216,7 @@ Stream` values without the need to monomorphize the functions that work
216216
with them.
217217

218218
Unfortunately, the use of poll does mean that it is harder to write
219-
stream implementations. The long-term fix for this, discussed in the [Future possiblilities](future-possibilities) section, is dedicated [generator syntax].
219+
stream implementations. The long-term fix for this, discussed in the [Future possiblilities][future-possibilities] section, is dedicated [generator syntax].
220220

221221
# Rationale and alternatives
222222
[rationale-and-alternatives]: #rationale-and-alternatives
@@ -329,7 +329,7 @@ design issues] to be resolved before they are added. Therefore, we've
329329
decided to enable progress on the stream trait by stabilizing a core,
330330
and to come back to the problem of extending it with combinators.
331331

332-
[outstanding design issues]: https://rust-lang.github.io/wg-async-foundations/design_notes/async_closures.html
332+
[outstanding design issues]: https://rust-lang.github.io/wg-async-foundations/design_docs/async_closures.html
333333

334334
This path does carry some risk. Adding combinator methods can cause
335335
existing code to stop compiling due to the ambiguities in method

0 commit comments

Comments
 (0)