From 3b76f4d2e8d89708587fb7e14120ce98fff4d759 Mon Sep 17 00:00:00 2001 From: Yamato Security <71482215+YamatoSecurity@users.noreply.github.com> Date: Thu, 1 Sep 2022 15:39:41 +0900 Subject: [PATCH] wording update --- src/afterfact.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/afterfact.rs b/src/afterfact.rs index 9fd293f7..a530a2ac 100644 --- a/src/afterfact.rs +++ b/src/afterfact.rs @@ -382,7 +382,7 @@ fn emit_csv( &disp_wtr, get_writable_color(None), &format!( - "Detected events / Total events: {} / {} (reduced {} events ({:.2}%))", + "Detected alerts and events / Total events: {} / {} (Data reduction: {} events ({:.2}%))", (all_record_cnt - reducted_record_cnt).to_formatted_string(&Locale::en), all_record_cnt.to_formatted_string(&Locale::en), reducted_record_cnt.to_formatted_string(&Locale::en), @@ -673,7 +673,7 @@ fn _print_detection_summary_tables( take_cnt - sorted_detections.len() }; for _x in 0..na_cnt { - col_output.push("N/A".to_string()); + col_output.push("n/a".to_string()); } output.push(col_output); }