File tree 3 files changed +3
-3
lines changed
3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ use crate::task::{Context, Poll};
7
7
/// Creates a future which never resolves, representing a computation that never
8
8
/// finishes.
9
9
///
10
- /// This `struct` is created by the [`pending`] function . See its
10
+ /// This `struct` is created by [`pending()`] . See its
11
11
/// documentation for more.
12
12
#[ stable( feature = "future_readiness_fns" , since = "1.48.0" ) ]
13
13
#[ must_use = "futures do nothing unless you `.await` or poll them" ]
Original file line number Diff line number Diff line change 33
33
34
34
/// A Future that wraps a function returning `Poll`.
35
35
///
36
- /// This `struct` is created by the [`poll_fn`] function . See its
36
+ /// This `struct` is created by [`poll_fn()`] . See its
37
37
/// documentation for more.
38
38
#[ must_use = "futures do nothing unless you `.await` or poll them" ]
39
39
#[ unstable( feature = "future_poll_fn" , issue = "72302" ) ]
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ use crate::task::{Context, Poll};
4
4
5
5
/// Creates a future that is immediately ready with a value.
6
6
///
7
- /// This `struct` is created by the [`ready`] function . See its
7
+ /// This `struct` is created by [`ready()`] . See its
8
8
/// documentation for more.
9
9
#[ stable( feature = "future_readiness_fns" , since = "1.48.0" ) ]
10
10
#[ derive( Debug , Clone ) ]
You can’t perform that action at this time.
0 commit comments