From 1581b97acb53217ed604dd873911870f38adbfbb Mon Sep 17 00:00:00 2001 From: Lukas Markeffsky <@> Date: Wed, 22 Mar 2023 22:01:19 +0100 Subject: [PATCH] make link clickable --- compiler/rustc_error_codes/src/error_codes/E0794.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/rustc_error_codes/src/error_codes/E0794.md b/compiler/rustc_error_codes/src/error_codes/E0794.md index a33802885c006..4377a29247331 100644 --- a/compiler/rustc_error_codes/src/error_codes/E0794.md +++ b/compiler/rustc_error_codes/src/error_codes/E0794.md @@ -59,6 +59,6 @@ In the definition of `bar`, the lifetime parameter `'a` is late-bound, while where `'a` is universally quantified and `'b` is substituted by a specific lifetime. It is not allowed to explicitly specify early-bound lifetime arguments when late-bound lifetime parameters are present (as for `bar_fn2`, -see issue #42868: https://github.com/rust-lang/rust/issues/42868), although the +see [issue #42868](https://github.com/rust-lang/rust/issues/42868)), although the types that are constrained by early-bound parameters can be specified (as for `bar_fn3`).