File tree 2 files changed +3
-3
lines changed
src/tools/compiletest/src
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -140,7 +140,7 @@ pub fn parse_config(args: Vec<String>) -> Config {
140
140
"" ,
141
141
"runtool" ,
142
142
"supervisor program to run tests under \
143
- (eg. emulator, valgrind)",
143
+ (e.g., emulator, valgrind)",
144
144
"PROGRAM" ,
145
145
)
146
146
. optopt (
Original file line number Diff line number Diff line change @@ -512,7 +512,7 @@ impl<'test> TestCx<'test> {
512
512
// Finally, let's make sure it actually appears to remain valid code.
513
513
let proc_res = self . typecheck_source ( actual) ;
514
514
if !proc_res. status . success ( ) {
515
- self . fatal_proc_rec ( "pretty-printed source does not typecheck " , & proc_res) ;
515
+ self . fatal_proc_rec ( "pretty-printed source does not type-check " , & proc_res) ;
516
516
}
517
517
518
518
if !self . props . pretty_expanded {
@@ -532,7 +532,7 @@ impl<'test> TestCx<'test> {
532
532
let proc_res = self . typecheck_source ( expanded_src) ;
533
533
if !proc_res. status . success ( ) {
534
534
self . fatal_proc_rec (
535
- "pretty-printed source (expanded) does not typecheck " ,
535
+ "pretty-printed source (expanded) does not type-check " ,
536
536
& proc_res,
537
537
) ;
538
538
}
You can’t perform that action at this time.
0 commit comments