From 0e33b83f4f23eb9ca9a99868fbed327172158ddd Mon Sep 17 00:00:00 2001 From: Stefan Lang Date: Wed, 11 Dec 2024 12:54:03 +0100 Subject: [PATCH] bugfix --- src/mapping_info.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mapping_info.rs b/src/mapping_info.rs index 89e45c4..e833133 100644 --- a/src/mapping_info.rs +++ b/src/mapping_info.rs @@ -167,7 +167,7 @@ impl MappingInfo{ // Method to export error_counts to a CSV-formatted String pub fn report_to_string(&self) -> String { // Start with the header - let mut output = String::from("Error Type,Count\n"); + let mut output = String::from("Error Type\tCount\n"); // Iterate over the error_counts and append each as a row in the CSV format for (error_type, count) in &self.error_counts {