Update src/day.rs
Co-authored-by: Felix Spöttel <1682504+fspoettel@users.noreply.github.com>
This commit is contained in:
parent
bc9b0e20f6
commit
0e6ee20e01
1 changed files with 1 additions and 1 deletions
|
@ -98,7 +98,7 @@ impl Iterator for EveryDay {
|
||||||
if self.current > 25 {
|
if self.current > 25 {
|
||||||
return None;
|
return None;
|
||||||
}
|
}
|
||||||
// NOTE: the iterator start at 1 and we have verified that the value is not above 25.
|
// NOTE: the iterator starts at 1 and we have verified that the value is not above 25.
|
||||||
let day = Day(self.current);
|
let day = Day(self.current);
|
||||||
self.current += 1;
|
self.current += 1;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue