about summary refs log tree commit diff
path: root/compiler/rustc_error_codes
diff options
context:
space:
mode:
authorLukas Markeffsky <@>2023-03-22 22:01:19 +0100
committerLukas Markeffsky <@>2023-03-22 22:01:19 +0100
commit1581b97acb53217ed604dd873911870f38adbfbb (patch)
tree6192494637b90f9886623e7243f756584d97dc3e /compiler/rustc_error_codes
parent439292bc7913399e406d9bb7e8da0f70c6317c6e (diff)
downloadrust-1581b97acb53217ed604dd873911870f38adbfbb.tar.gz
rust-1581b97acb53217ed604dd873911870f38adbfbb.zip
make link clickable
Diffstat (limited to 'compiler/rustc_error_codes')
-rw-r--r--compiler/rustc_error_codes/src/error_codes/E0794.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_error_codes/src/error_codes/E0794.md b/compiler/rustc_error_codes/src/error_codes/E0794.md
index a33802885c0..4377a292473 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`).