about summary refs log tree commit diff
path: root/compiler/rustc_resolve/src
diff options
context:
space:
mode:
authorMichael Howell <michael@notriddle.com>2022-05-19 09:09:08 -0700
committerMichael Howell <michael@notriddle.com>2022-05-21 07:53:45 -0700
commit98b98ac11e0d47710144a4e72c75269fbeedd5a5 (patch)
tree507c81f7ca575d1431baa543ed3b7353b8db4b5d /compiler/rustc_resolve/src
parent3b9cf893d0cd1236b988ac2401869eadc39eff76 (diff)
downloadrust-98b98ac11e0d47710144a4e72c75269fbeedd5a5.tar.gz
rust-98b98ac11e0d47710144a4e72c75269fbeedd5a5.zip
Fix broken intra-doc link
Diffstat (limited to 'compiler/rustc_resolve/src')
-rw-r--r--compiler/rustc_resolve/src/late.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_resolve/src/late.rs b/compiler/rustc_resolve/src/late.rs
index ff87baeef3e..73d6566e3cd 100644
--- a/compiler/rustc_resolve/src/late.rs
+++ b/compiler/rustc_resolve/src/late.rs
@@ -182,7 +182,7 @@ impl RibKind<'_> {
 /// stack. This may be, for example, a `let` statement (because it introduces variables), a macro,
 /// etc.
 ///
-/// Different [rib kinds](enum.RibKind) are transparent for different names.
+/// Different [rib kinds](enum@RibKind) are transparent for different names.
 ///
 /// The resolution keeps a separate stack of ribs as it traverses the AST for each namespace. When
 /// resolving, the name is looked up from inside out.