File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -512,23 +512,23 @@ impl TuiUi {
512
512
} ;
513
513
let items = vec ! [
514
514
Row :: new( vec![
515
- Cell :: from( Span :: raw( "global run time" ) ) ,
515
+ Cell :: from( Span :: raw( "run time" ) ) ,
516
516
Cell :: from( Span :: raw( format_duration_hms( & ( current_time( ) - tup. 0 ) ) ) ) ,
517
517
] ) ,
518
518
Row :: new( vec![
519
- Cell :: from( Span :: raw( "global exec speed" ) ) ,
519
+ Cell :: from( Span :: raw( "exec speed" ) ) ,
520
520
Cell :: from( Span :: raw( & tup. 1 . exec_speed) ) ,
521
521
] ) ,
522
522
Row :: new( vec![
523
- Cell :: from( Span :: raw( "global total execs" ) ) ,
523
+ Cell :: from( Span :: raw( "total execs" ) ) ,
524
524
Cell :: from( Span :: raw( format_big_number( tup. 1 . total_execs) ) ) ,
525
525
] ) ,
526
526
Row :: new( vec![
527
- Cell :: from( Span :: raw( "global last new entry" ) ) ,
527
+ Cell :: from( Span :: raw( "last new entry" ) ) ,
528
528
Cell :: from( Span :: raw( format_duration_hms( & ( tup. 1 . last_new_entry) ) ) ) ,
529
529
] ) ,
530
530
Row :: new( vec![
531
- Cell :: from( Span :: raw( "global last solution" ) ) ,
531
+ Cell :: from( Span :: raw( "last solution" ) ) ,
532
532
Cell :: from( Span :: raw( format_duration_hms( & ( tup. 1 . last_saved_solution) ) ) ) ,
533
533
] ) ,
534
534
] ;
You can’t perform that action at this time.
0 commit comments