From e6a8b33b37abd68b45df2806541b61bcc08ab5f0 Mon Sep 17 00:00:00 2001 From: Lewis Jackson <> Date: Mon, 29 May 2023 14:45:59 +0300 Subject: [PATCH] Remove comment --- src/WatchyRTC.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/WatchyRTC.cpp b/src/WatchyRTC.cpp index 217ec25..3511f6e 100644 --- a/src/WatchyRTC.cpp +++ b/src/WatchyRTC.cpp @@ -39,7 +39,7 @@ void WatchyRTC::read(tmElements_t & tm, int offsetInSeconds) { int minute = tm.Minute; int second = tm.Second; - // adjust for offset - making some assumptions here: month and year will never change. + // adjust for offset second += offsetInSeconds; if (second >= 60 || second < 0) { minute += second / 60;