From bc9b0e20f62247ba95355876d75765ce6d9b699a Mon Sep 17 00:00:00 2001 From: Tristan Guichaoua <33934311+tguichaoua@users.noreply.github.com> Date: Wed, 22 Nov 2023 12:54:55 +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 85a329a..44d0533 100644 --- a/src/day.rs +++ b/src/day.rs @@ -81,7 +81,7 @@ impl Display for DayFromStrError { /* -------------------------------------------------------------------------- */ -/// An iterator that yield every day of advent from the 1st to the 25th. +/// An iterator that yields every day of advent from the 1st to the 25th. pub fn every_day() -> EveryDay { EveryDay { current: 1 } }