about summary refs log tree commit diff
path: root/compiler/rustc_hir_analysis
diff options
context:
space:
mode:
authorMichael Goulet <michael@errs.io>2022-11-25 18:00:27 +0000
committerMichael Goulet <michael@errs.io>2022-11-28 17:35:39 +0000
commit06786227fdb92f7a905cfd4a0131f2ec9db5072f (patch)
tree0aed1a52d5c4b5e7c4f600498cc2a8219c85c9e5 /compiler/rustc_hir_analysis
parent52cd34269644e65b88ac4faf29777b249a2cf188 (diff)
downloadrust-06786227fdb92f7a905cfd4a0131f2ec9db5072f.tar.gz
rust-06786227fdb92f7a905cfd4a0131f2ec9db5072f.zip
Simplify more FnCtxt normalization
Diffstat (limited to 'compiler/rustc_hir_analysis')
-rw-r--r--compiler/rustc_hir_analysis/src/astconv/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_hir_analysis/src/astconv/mod.rs b/compiler/rustc_hir_analysis/src/astconv/mod.rs
index 22ea83a13f0..82150310638 100644
--- a/compiler/rustc_hir_analysis/src/astconv/mod.rs
+++ b/compiler/rustc_hir_analysis/src/astconv/mod.rs
@@ -109,7 +109,7 @@ pub trait AstConv<'tcx> {
     ) -> Ty<'tcx>;
 
     /// Normalize an associated type coming from the user.
-    /// 
+    ///
     /// This should only be used by astconv. Use `FnCtxt::normalize`
     /// or `ObligationCtxt::normalize` in downstream crates.
     fn normalize_ty(&self, span: Span, ty: Ty<'tcx>) -> Ty<'tcx>;