From 0e6ee20e01fda7ea59ce10237591b1a8682718b8 Mon Sep 17 00:00:00 2001 From: Tristan Guichaoua <33934311+tguichaoua@users.noreply.github.com> Date: Wed, 22 Nov 2023 12:55:00 +0100 Subject: [PATCH] Update src/day.rs MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Felix Spöttel <1682504+fspoettel@users.noreply.github.com> --- src/day.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/day.rs b/src/day.rs index 44d0533..c4eec43 100644 --- a/src/day.rs +++ b/src/day.rs @@ -98,7 +98,7 @@ impl Iterator for EveryDay { if self.current > 25 { 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); self.current += 1;