Skip to content

Commit d1f566c

Browse files
authored
Remove "global" prefix from TUI (#3146)
1 parent 8683c68 commit d1f566c

File tree

1 file changed

+5
-5
lines changed
  • libafl/src/monitors/tui

1 file changed

+5
-5
lines changed

libafl/src/monitors/tui/ui.rs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -512,23 +512,23 @@ impl TuiUi {
512512
};
513513
let items = vec![
514514
Row::new(vec![
515-
Cell::from(Span::raw("global run time")),
515+
Cell::from(Span::raw("run time")),
516516
Cell::from(Span::raw(format_duration_hms(&(current_time() - tup.0)))),
517517
]),
518518
Row::new(vec![
519-
Cell::from(Span::raw("global exec speed")),
519+
Cell::from(Span::raw("exec speed")),
520520
Cell::from(Span::raw(&tup.1.exec_speed)),
521521
]),
522522
Row::new(vec![
523-
Cell::from(Span::raw("global total execs")),
523+
Cell::from(Span::raw("total execs")),
524524
Cell::from(Span::raw(format_big_number(tup.1.total_execs))),
525525
]),
526526
Row::new(vec![
527-
Cell::from(Span::raw("global last new entry")),
527+
Cell::from(Span::raw("last new entry")),
528528
Cell::from(Span::raw(format_duration_hms(&(tup.1.last_new_entry)))),
529529
]),
530530
Row::new(vec![
531-
Cell::from(Span::raw("global last solution")),
531+
Cell::from(Span::raw("last solution")),
532532
Cell::from(Span::raw(format_duration_hms(&(tup.1.last_saved_solution)))),
533533
]),
534534
];

0 commit comments

Comments
 (0)