about summary refs log tree commit diff
path: root/compiler
diff options
context:
space:
mode:
authorMatthias Krüger <matthias.krueger@famsik.de>2024-06-17 20:34:52 +0200
committerGitHub <noreply@github.com>2024-06-17 20:34:52 +0200
commite45b5f47fbfdc8b8b9fe62c097fabbeccce7aa88 (patch)
tree207e1058e3b1f8b03d088b70b4521e96c3db2d22 /compiler
parent940ff24ec00122e7a0c9099fcd5ea7db41555d3a (diff)
parent450943b0d6271fe06512c5107f89f096e71367bc (diff)
downloadrust-e45b5f47fbfdc8b8b9fe62c097fabbeccce7aa88.tar.gz
rust-e45b5f47fbfdc8b8b9fe62c097fabbeccce7aa88.zip
Rollup merge of #126579 - ChoKyuWon:master, r=TaKO8Ki
Fix broken documentation link

The original doc link on the comment was broken, so fix it to the proper link.
Diffstat (limited to 'compiler')
-rw-r--r--compiler/rustc_type_ir/src/region_kind.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_type_ir/src/region_kind.rs b/compiler/rustc_type_ir/src/region_kind.rs
index 37c9532ad89..7abcc370c88 100644
--- a/compiler/rustc_type_ir/src/region_kind.rs
+++ b/compiler/rustc_type_ir/src/region_kind.rs
@@ -154,7 +154,7 @@ pub enum RegionKind<I: Interner> {
     /// parameters via `tcx.liberate_late_bound_regions`. They are then treated
     /// the same way as `ReEarlyParam` while inside of the function.
     ///
-    /// See <https://rustc-dev-guide.rust-lang.org/early-late-bound-summary.html> for
+    /// See <https://rustc-dev-guide.rust-lang.org/early-late-bound-params/early-late-bound-summary.html> for
     /// more info about early and late bound lifetime parameters.
     ReLateParam(I::LateParamRegion),