@@ -215,7 +215,7 @@ impl BuilderMethods<'a, 'tcx> for Builder<'a, 'll, 'tcx> {
215215        funclet :  Option < & Funclet < ' ll > > , 
216216    )  -> & ' ll  Value  { 
217217
218-         debug ! ( "Invoke  {:?} with args ({:?})" , 
218+         debug ! ( "invoke  {:?} with args ({:?})" , 
219219               llfn, 
220220               args) ; 
221221
@@ -1035,7 +1035,7 @@ impl BuilderMethods<'a, 'tcx> for Builder<'a, 'll, 'tcx> {
10351035        funclet :  Option < & Funclet < ' ll > > , 
10361036    )  -> & ' ll  Value  { 
10371037
1038-         debug ! ( "Call  {:?} with args ({:?})" , 
1038+         debug ! ( "call  {:?} with args ({:?})" , 
10391039               llfn, 
10401040               args) ; 
10411041
@@ -1238,7 +1238,7 @@ impl Builder<'a, 'll, 'tcx> {
12381238        if  dest_ptr_ty == stored_ptr_ty { 
12391239            ptr
12401240        }  else  { 
1241-             debug ! ( "Type  mismatch in store. \  
1241+             debug ! ( "type  mismatch in store. \  
12421242                     Expected {:?}, got {:?}; inserting bitcast", 
12431243                   dest_ptr_ty,  stored_ptr_ty) ; 
12441244            self . bitcast ( ptr,  stored_ptr_ty) 
@@ -1274,7 +1274,7 @@ impl Builder<'a, 'll, 'tcx> {
12741274            . map ( |( i,  ( expected_ty,  & actual_val) ) | { 
12751275                let  actual_ty = self . val_ty ( actual_val) ; 
12761276                if  expected_ty != actual_ty { 
1277-                     debug ! ( "Type  mismatch in function call of {:?}. \  
1277+                     debug ! ( "type  mismatch in function call of {:?}. \  
12781278                             Expected {:?} for param {}, got {:?}; injecting bitcast", 
12791279                           llfn,  expected_ty,  i,  actual_ty) ; 
12801280                    self . bitcast ( actual_val,  expected_ty) 
0 commit comments