Skip to content

Commit f8f02de

Browse files
committed
core::future::Future: Fix markup typo in docs.
1 parent d0b84e9 commit f8f02de

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/libcore/future/future.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ pub trait Future {
4949
/// For example, a future waiting for a socket to become
5050
/// readable would call `.clone()` on the [`Waker`] and store it.
5151
/// When a signal arrives elsewhere indicating that the socket is readable,
52-
/// `[Waker::wake]` is called and the socket future's task is awoken.
52+
/// [`Waker::wake`] is called and the socket future's task is awoken.
5353
/// Once a task has been woken up, it should attempt to `poll` the future
5454
/// again, which may or may not produce a final value.
5555
///

0 commit comments

Comments
 (0)