diff options
| author | Kyle Lin <minecraft.kyle.train@gmail.com> | 2023-08-19 02:22:13 +0800 |
|---|---|---|
| committer | Kyle Lin <minecraft.kyle.train@gmail.com> | 2023-08-19 02:22:13 +0800 |
| commit | 297ff8c97ef7b34e620e8f016361227f0be79a7c (patch) | |
| tree | 2491de29e5b46aa0ae828ebf52146278e187522e | |
| parent | e17d2da2fcdd915a631d3ff25b4462397453e0f1 (diff) | |
| download | rust-297ff8c97ef7b34e620e8f016361227f0be79a7c.tar.gz rust-297ff8c97ef7b34e620e8f016361227f0be79a7c.zip | |
Fix redundant explicit link in rustc_borrowck
| -rw-r--r-- | compiler/rustc_borrowck/src/consumers.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_borrowck/src/consumers.rs b/compiler/rustc_borrowck/src/consumers.rs index d257145373f..becfa535a59 100644 --- a/compiler/rustc_borrowck/src/consumers.rs +++ b/compiler/rustc_borrowck/src/consumers.rs @@ -30,7 +30,7 @@ pub use super::{ /// will be retrieved. #[derive(Debug, Copy, Clone)] pub enum ConsumerOptions { - /// Retrieve the [`Body`] along with the [`BorrowSet`](super::borrow_set::BorrowSet) + /// Retrieve the [`Body`] along with the [`BorrowSet`] /// and [`RegionInferenceContext`]. If you would like the body only, use /// [`TyCtxt::mir_promoted`]. /// |
