Skip to content

Commit 1715be0

Browse files
committed
Fix tidy
1 parent 70645e7 commit 1715be0

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/librustc/traits/coherence.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -396,10 +396,10 @@ fn orphan_check_trait_ref<'tcx>(tcx: TyCtxt<'_, '_, '_>,
396396
debug!("orphan_check_trait_ref: no local type");
397397
Err(OrphanCheckErr::NoLocalInputType)
398398
} else {
399-
// First, create an ordered iterator over all the type parameters to the trait, with the self
400-
// type appearing first.
401-
// Find the first input type that either references a type parameter OR
402-
// some local type.
399+
// First, create an ordered iterator over all the type
400+
// parameters to the trait, with the self type appearing
401+
// first. Find the first input type that either references a
402+
// type parameter OR some local type.
403403
for input_ty in trait_ref.input_types() {
404404
if ty_is_local(tcx, input_ty, in_crate) {
405405
debug!("orphan_check_trait_ref: ty_is_local `{:?}`", input_ty);

0 commit comments

Comments
 (0)