Skip to content

Commit

Permalink
bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
stela2502 committed Dec 11, 2024
1 parent 13f8f4e commit 0e33b83
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mapping_info.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit 0e33b83

Please sign in to comment.