2
0
Fork 1
mirror of https://github.com/async-rs/async-std.git synced 2025-01-16 10:49:55 +00:00

Fix wrong link in condvar doc

This commit is contained in:
Observer42 2020-08-11 12:01:40 +08:00
parent 19dcced77b
commit e068ab413b

View file

@ -21,7 +21,7 @@ impl WaitTimeoutResult {
/// A Condition Variable /// 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 /// [`std::sync::Condvar`]: https://doc.rust-lang.org/std/sync/struct.Condvar.html
/// ///