File tree 1 file changed +3
-1
lines changed
1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -17,11 +17,13 @@ use crate::task::{Context, Poll};
17
17
/// final value. This method does not block if the value is not ready. Instead,
18
18
/// the current task is scheduled to be woken up when it's possible to make
19
19
/// further progress by `poll`ing again. The `context` passed to the `poll`
20
- /// method can provide a `Waker`, which is a handle for waking up the current
20
+ /// method can provide a [ `Waker`] , which is a handle for waking up the current
21
21
/// task.
22
22
///
23
23
/// When using a future, you generally won't call `poll` directly, but instead
24
24
/// `.await` the value.
25
+ ///
26
+ /// [`Waker`]: ../task/struct.Waker.html
25
27
#[ doc( spotlight) ]
26
28
#[ must_use = "futures do nothing unless you `.await` or poll them" ]
27
29
#[ stable( feature = "futures_api" , since = "1.36.0" ) ]
You can’t perform that action at this time.
0 commit comments