about summary refs log tree commit diff
path: root/compiler/rustc_interface/src
diff options
context:
space:
mode:
authoromahs <73983677+omahs@users.noreply.github.com>2025-05-12 11:15:46 +0200
committeromahs <73983677+omahs@users.noreply.github.com>2025-05-12 17:20:49 +0000
commit1caaa887003ed84b5c7022ded53ff50e699af666 (patch)
tree364044934e331c2dc6f3ba4fdfd1a0e096cc5178 /compiler/rustc_interface/src
parentac9ac0e0f36dcd7f8a8f0405cd003585fe4e4426 (diff)
downloadrust-1caaa887003ed84b5c7022ded53ff50e699af666.tar.gz
rust-1caaa887003ed84b5c7022ded53ff50e699af666.zip
Fix typos
Diffstat (limited to 'compiler/rustc_interface/src')
-rw-r--r--compiler/rustc_interface/src/passes.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_interface/src/passes.rs b/compiler/rustc_interface/src/passes.rs
index f4d11a7c0be..7ed32d559c3 100644
--- a/compiler/rustc_interface/src/passes.rs
+++ b/compiler/rustc_interface/src/passes.rs
@@ -907,7 +907,7 @@ pub fn create_and_enter_global_ctxt<T, F: for<'tcx> FnOnce(TyCtxt<'tcx>) -> T>(
                 feed.output_filenames(Arc::new(outputs));
 
                 let res = f(tcx);
-                // FIXME maybe run finish even when a fatal error occured? or at least tcx.alloc_self_profile_query_strings()?
+                // FIXME maybe run finish even when a fatal error occurred? or at least tcx.alloc_self_profile_query_strings()?
                 tcx.finish();
                 res
             },