Auto merge of #13661 - alex-semenyuk:doc_fix, r=Manishearth

Link fix

[`clippy::await_holding_lock`](https://rust-lang.github.io/rust-clippy/master/index.html#/await_holding_lock) has unformatted link

changelog: none
This commit is contained in:
bors 2024-11-06 17:06:44 +00:00
commit ab560d88e9

View File

@ -15,7 +15,7 @@
/// `MutexGuard`.
///
/// ### Why is this bad?
/// The Mutex types found in [`std::sync`][https://doc.rust-lang.org/stable/std/sync/] and
/// The Mutex types found in [`std::sync`](https://doc.rust-lang.org/stable/std/sync/) and
/// [`parking_lot`](https://docs.rs/parking_lot/latest/parking_lot/) are
/// not designed to operate in an async context across await points.
///