]> git.lizzy.rs Git - rust.git/blobdiff - compiler/rustc_hir_analysis/src/coherence/mod.rs
Rollup merge of #106978 - mejrs:mir_build3, r=davidtwco
[rust.git] / compiler / rustc_hir_analysis / src / coherence / mod.rs
index 2e9cd2fca01c139d366a0f1f43a06d1179c30f31..d3b5778ba3b7d61130b41fde472f4d08deec7689 100644 (file)
@@ -171,7 +171,7 @@ fn check_object_overlap<'tcx>(
         for component_def_id in component_def_ids {
             if !tcx.is_object_safe(component_def_id) {
                 // Without the 'object_safe_for_dispatch' feature this is an error
-                // which will be reported by wfcheck.  Ignore it here.
+                // which will be reported by wfcheck. Ignore it here.
                 // This is tested by `coherence-impl-trait-for-trait-object-safe.rs`.
                 // With the feature enabled, the trait is not implemented automatically,
                 // so this is valid.