Tshepang Mbambo 2022-07-31 22:30:14 +02:00
parent 74b9b456c1
commit ea2f1c2977
1 changed files with 1 additions and 0 deletions

View File

@ -72,6 +72,7 @@ fn collect_dates_from_file(date_regexes: &[Regex], text: &str) -> Vec<(usize, Da
.collect(); .collect();
output.extend(results); output.extend(results);
} }
output.sort_by(|a, b| a.0.cmp(&b.0));
output output
} }