Skip to content

Commit cae96b1

Browse files
committed
Fix tidy
1 parent e869e5f commit cae96b1

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
@@ -369,10 +369,10 @@ fn orphan_check_trait_ref<'tcx>(tcx: TyCtxt<'_, '_, '_>,
369369
debug!("orphan_check_trait_ref: no local type");
370370
Err(OrphanCheckErr::NoLocalInputType)
371371
} else {
372-
// First, create an ordered iterator over all the type parameters to the trait, with the self
373-
// type appearing first.
374-
// Find the first input type that either references a type parameter OR
375-
// some local type.
372+
// First, create an ordered iterator over all the type
373+
// parameters to the trait, with the self type appearing
374+
// first. Find the first input type that either references a
375+
// type parameter OR some local type.
376376
for input_ty in trait_ref.input_types() {
377377
if ty_is_local(tcx, input_ty, in_crate) {
378378
debug!("orphan_check_trait_ref: ty_is_local `{:?}`", input_ty);

0 commit comments

Comments
 (0)