From e068ab413bddda24bfa7b936a550cd2daa9f6e0b Mon Sep 17 00:00:00 2001 From: Observer42 Date: Tue, 11 Aug 2020 12:01:40 +0800 Subject: [PATCH] Fix wrong link in condvar doc --- src/sync/condvar.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sync/condvar.rs b/src/sync/condvar.rs index 09aea3a1..1a208efd 100644 --- a/src/sync/condvar.rs +++ b/src/sync/condvar.rs @@ -21,7 +21,7 @@ impl WaitTimeoutResult { /// A Condition Variable /// -/// This type is an async version of [`std::sync::Mutex`]. +/// This type is an async version of [`std::sync::Condvar`]. /// /// [`std::sync::Condvar`]: https://doc.rust-lang.org/std/sync/struct.Condvar.html ///