about summary refs log tree commit diff
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2024-11-06 17:06:44 +0000
committerbors <bors@rust-lang.org>2024-11-06 17:06:44 +0000
commitab560d88e926462ae9e3705c71a8b7ae3a08ef5c (patch)
treea37a9488a3df557420cc95217f1b686170a2047e
parentf02a0208e567fa9bd29ae91bca22d2f7f0b8388b (diff)
parent7bcd578a028f48d59ead6337893da9601b7fc442 (diff)
downloadrust-ab560d88e926462ae9e3705c71a8b7ae3a08ef5c.tar.gz
rust-ab560d88e926462ae9e3705c71a8b7ae3a08ef5c.zip
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
-rw-r--r--clippy_lints/src/await_holding_invalid.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/clippy_lints/src/await_holding_invalid.rs b/clippy_lints/src/await_holding_invalid.rs
index 9952d0af99e..6948cf560a5 100644
--- a/clippy_lints/src/await_holding_invalid.rs
+++ b/clippy_lints/src/await_holding_invalid.rs
@@ -15,7 +15,7 @@ declare_clippy_lint! {
     /// `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.
     ///