@@ -646,7 +646,7 @@ impl<'cx, 'tcx> WritebackCx<'cx, 'tcx> {
646646 let n_ty = self . fcx . node_ty ( hir_id) ;
647647 let n_ty = self . resolve ( & n_ty, & span) ;
648648 self . write_ty_to_tables ( hir_id, n_ty) ;
649- debug ! ( "Node {:?} has type {:?}" , hir_id, n_ty) ;
649+ debug ! ( "node {:?} has type {:?}" , hir_id, n_ty) ;
650650
651651 // Resolve any substitutions
652652 if let Some ( substs) = self . fcx . tables . borrow ( ) . node_substs_opt ( hir_id) {
@@ -665,13 +665,13 @@ impl<'cx, 'tcx> WritebackCx<'cx, 'tcx> {
665665 . remove ( hir_id) ;
666666 match adjustment {
667667 None => {
668- debug ! ( "No adjustments for node {:?}" , hir_id) ;
668+ debug ! ( "no adjustments for node {:?}" , hir_id) ;
669669 }
670670
671671 Some ( adjustment) => {
672672 let resolved_adjustment = self . resolve ( & adjustment, & span) ;
673673 debug ! (
674- "Adjustments for node {:?}: {:?}" ,
674+ "adjustments for node {:?}: {:?}" ,
675675 hir_id, resolved_adjustment
676676 ) ;
677677 self . tables
@@ -689,7 +689,7 @@ impl<'cx, 'tcx> WritebackCx<'cx, 'tcx> {
689689 . remove ( hir_id) ;
690690 match adjustment {
691691 None => {
692- debug ! ( "No pat_adjustments for node {:?}" , hir_id) ;
692+ debug ! ( "no pat_adjustments for node {:?}" , hir_id) ;
693693 }
694694
695695 Some ( adjustment) => {
0 commit comments