update comment

This commit is contained in:
Felix Spöttel 2023-12-11 12:59:02 +01:00 committed by GitHub
parent 0686723abf
commit ccb8b5c8ee
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -11,7 +11,8 @@ pub fn run_multi(days_to_run: &HashSet<Day>, is_release: bool, is_timed: bool) -
let mut timings: Vec<Timing> = Vec::with_capacity(days_to_run.len());
let mut need_space = false;
// NOTE: we didn't want duplicate day value, but we want days to be sorted.
// NOTE: use non-duplicate, sorted day values.
all_days()
.filter(|day| days_to_run.contains(day))
.for_each(|day| {