about summary refs log tree commit diff
diff options
context:
space:
mode:
authorMarcusGrass <34198073+MarcusGrass@users.noreply.github.com>2023-06-05 15:48:57 +0200
committerGitHub <noreply@github.com>2023-06-05 15:48:57 +0200
commit6f2497703e7e3b7c4c0c007371ed6870c984769a (patch)
treea0b5757fdc2b00cab9baf4b63d1eca517a61f8dd
parent62eb4e7d7b5568bfcf9e82a61bf3a60aaa739548 (diff)
downloadrust-6f2497703e7e3b7c4c0c007371ed6870c984769a.tar.gz
rust-6f2497703e7e3b7c4c0c007371ed6870c984769a.zip
Compact issue link
Co-authored-by: Takayuki Nakata <f.seasons017@gmail.com>
-rw-r--r--clippy_lints/src/returns.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/clippy_lints/src/returns.rs b/clippy_lints/src/returns.rs
index 92913ddc4aa..b5686e390ad 100644
--- a/clippy_lints/src/returns.rs
+++ b/clippy_lints/src/returns.rs
@@ -27,7 +27,7 @@ declare_clippy_lint! {
     ///
     /// ### Known problems
     /// In the case of some temporaries, e.g. locks, eliding the variable binding could lead
-    /// to deadlocks. See [rust-lang issue 37612](https://github.com/rust-lang/rust/issues/37612).
+    /// to deadlocks. See [this issue](https://github.com/rust-lang/rust/issues/37612).
     /// This could become relevant if the code is later changed to use the code that would have been
     /// bound without first assigning it to a let-binding.
     ///