From f9e7ede1ab28bae77d30a6bb95f9fc83b5b34cae Mon Sep 17 00:00:00 2001 From: Ollie Date: Sat, 18 Apr 2026 09:20:56 +0100 Subject: [PATCH] Fixed broken documentation link for method lookup in rustc_hir_typeck::method --- compiler/rustc_hir_typeck/src/method/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/rustc_hir_typeck/src/method/mod.rs b/compiler/rustc_hir_typeck/src/method/mod.rs index eef7f9ba495a..97d53a9d5aa5 100644 --- a/compiler/rustc_hir_typeck/src/method/mod.rs +++ b/compiler/rustc_hir_typeck/src/method/mod.rs @@ -1,6 +1,6 @@ //! Method lookup: the secret sauce of Rust. See the [rustc dev guide] for more information. //! -//! [rustc dev guide]: https://rustc-dev-guide.rust-lang.org/method-lookup.html +//! [rustc dev guide]: https://rustc-dev-guide.rust-lang.org/hir-typeck/method-lookup.html mod confirm; mod prelude_edition_lints;