@@ -646,7 +646,7 @@ impl<'cx, 'tcx> WritebackCx<'cx, 'tcx> {
646
646
let n_ty = self . fcx . node_ty ( hir_id) ;
647
647
let n_ty = self . resolve ( & n_ty, & span) ;
648
648
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) ;
650
650
651
651
// Resolve any substitutions
652
652
if let Some ( substs) = self . fcx . tables . borrow ( ) . node_substs_opt ( hir_id) {
@@ -665,13 +665,13 @@ impl<'cx, 'tcx> WritebackCx<'cx, 'tcx> {
665
665
. remove ( hir_id) ;
666
666
match adjustment {
667
667
None => {
668
- debug ! ( "No adjustments for node {:?}" , hir_id) ;
668
+ debug ! ( "no adjustments for node {:?}" , hir_id) ;
669
669
}
670
670
671
671
Some ( adjustment) => {
672
672
let resolved_adjustment = self . resolve ( & adjustment, & span) ;
673
673
debug ! (
674
- "Adjustments for node {:?}: {:?}" ,
674
+ "adjustments for node {:?}: {:?}" ,
675
675
hir_id, resolved_adjustment
676
676
) ;
677
677
self . tables
@@ -689,7 +689,7 @@ impl<'cx, 'tcx> WritebackCx<'cx, 'tcx> {
689
689
. remove ( hir_id) ;
690
690
match adjustment {
691
691
None => {
692
- debug ! ( "No pat_adjustments for node {:?}" , hir_id) ;
692
+ debug ! ( "no pat_adjustments for node {:?}" , hir_id) ;
693
693
}
694
694
695
695
Some ( adjustment) => {
0 commit comments