update comment
This commit is contained in:
parent
0686723abf
commit
ccb8b5c8ee
1 changed files with 2 additions and 1 deletions
|
@ -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 timings: Vec<Timing> = Vec::with_capacity(days_to_run.len());
|
||||||
|
|
||||||
let mut need_space = false;
|
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()
|
all_days()
|
||||||
.filter(|day| days_to_run.contains(day))
|
.filter(|day| days_to_run.contains(day))
|
||||||
.for_each(|day| {
|
.for_each(|day| {
|
||||||
|
|
Loading…
Add table
Reference in a new issue