diff --git a/compiler/rustc_infer/src/infer/higher_ranked/mod.rs b/compiler/rustc_infer/src/infer/higher_ranked/mod.rs index 652f5abab151f6659b6bf277ba8bd6e7f51cb358..73cc411e533d346545c45beba9ac9c2a7f4e1d40 100644 --- a/compiler/rustc_infer/src/infer/higher_ranked/mod.rs +++ b/compiler/rustc_infer/src/infer/higher_ranked/mod.rs @@ -58,14 +58,11 @@ pub fn higher_ranked_sub( } impl<'a, 'tcx> InferCtxt<'a, 'tcx> { - /// Replaces all regions (resp. types) bound by `binder` with placeholder - /// regions (resp. types) and return a map indicating which bound-region - /// placeholder region. This is the first step of checking subtyping - /// when higher-ranked things are involved. + /// Replaces all bound variables (lifetimes, types, and constants) bound by + /// `binder` with placeholder variables. /// - /// **Important:** You have to be careful to not leak these placeholders, - /// for more information about how placeholders and HRTBs work, see - /// the [rustc dev guide]. + /// This is the first step of checking subtyping when higher-ranked things are involved. + /// For more details visit the relevant sections of the [rustc dev guide]. /// /// [rustc dev guide]: https://rustc-dev-guide.rust-lang.org/traits/hrtb.html pub fn replace_bound_vars_with_placeholders(&self, binder: ty::Binder<'tcx, T>) -> T