From 7b2438e7441e98b2a3f72eb239b1c51489b7d9b8 Mon Sep 17 00:00:00 2001 From: Alice Ryhl Date: Sat, 28 Mar 2020 21:20:51 +0100 Subject: sync: fix notified link (#2351) --- tokio/src/sync/notify.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tokio/src/sync/notify.rs') diff --git a/tokio/src/sync/notify.rs b/tokio/src/sync/notify.rs index 56b1c9a8..5cb41e89 100644 --- a/tokio/src/sync/notify.rs +++ b/tokio/src/sync/notify.rs @@ -22,7 +22,7 @@ use std::task::{Context, Poll, Waker}; /// /// The synchronization details of `Notify` are similar to /// [`thread::park`][park] and [`Thread::unpark`][unpark] from std. A [`Notify`] -/// value contains a single permit. [`notfied().await`] waits for the permit to +/// value contains a single permit. [`notified().await`] waits for the permit to /// be made available, consumes the permit, and resumes. [`notify()`] sets the /// permit, waking a pending task if there is one. /// -- cgit v1.2.3