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

Merge pull request #849 from Observer42/condvar-doc-typo

Fix wrong link in condvar doc
This commit is contained in:
Friedel Ziegelmayer 2020-08-11 10:36:34 +02:00 committed by GitHub
commit d04d769b9c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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
///